Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

C#
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