Skip to main content

CustomUnboundDataEventArgs.IsGetData Property

Indicates that you should supply data for the current cell of the unbound column in the event handler.

Namespace: DevExpress.Maui.DataGrid

Assembly: DevExpress.Maui.DataGrid.dll

NuGet Package: DevExpress.Maui.DataGrid

Declaration

public bool IsGetData { get; }

Property Value

Type Description
Boolean

true if the event occurs to supply data for the unbound columns’s cell; otherwise, false.

Remarks

If the IsGetData property returns true (and consequently the IsSetData property is set to false), supply data for the currently processed cell in the event handler. To do this, assign a required value (for example, it can be calculated based on values of other columns in the current row) to the event’s Value parameter. To identify the currently processed row and unbound column, use the SourceIndex and Column properties.

If the IsGetData property is set to false (and consequently the IsSetData property is set to true), the Value parameter identifies the cell value that a user modified in the grid’s unbound column. You can save it to your data source in the event handler.

See Also