Skip to main content
Tab

ASPxGridColumnDataEventArgs.IsGetData Property

Gets whether you should provide data for the currently processed cell.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public bool IsGetData { get; }

Property Value

Type Description
Boolean

true if you need to provide data for the currently processed cell; otherwise, false.

Remarks

Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.

ASPxGridView

If the IsGetData property returns true, the ASPxGridView.CustomUnboundColumnData event handler should provide data for the cell currently being processed. You need to obtain the data for this cell from a custom data source and assign it to the ASPxGridColumnDataEventArgs.Value property.

Grid View - Get Started

ASPxCardView

If the IsGetData property returns true, the ASPxCardView.CustomUnboundColumnData event handler should provide data for the cell currently being processed. You need to obtain the data for this cell from a custom data source and assign it to the ASPxGridColumnDataEventArgs.Value property.

Card View - Get Started

ASPxVerticalGrid

If the IsGetData property returns true, the ASPxVerticalGrid.CustomUnboundRowData event handler should provide data for the cell currently being processed. You need to obtain the data for this cell from a custom data source and assign it to the ASPxGridColumnDataEventArgs.Value property.

Vertical Grid - Get Started

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the IsGetData property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also