Skip to main content

CustomizeCellEventArgs.Handled Property

Gets or sets whether the GridControl.CustomizeCell event was handled. If it was handled, the default cell painting is not required.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

public bool Handled { get; set; }

Property Value

Type Description
Boolean

true if default cell painting is not required; otherwise, false.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

Example

This example demonstrates how to customize the appearance of cells in the specified grid column depending on cell values by handling the GridControl.CustomizeCell event.

The image below illustrates the result.

GridControl_CustomizeCell_iOS

GridControl_CustomizeCell_Android

See Also