Skip to main content
A newer version of this page is available. .
All docs
V21.2
Tab

GridColumnDisplayTextEventKind Enum

Lists values that specify types of operations with grid data.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public enum GridColumnDisplayTextEventKind

Members

Name Description
Display

The control is being rendered.

DataOperation

Operations with data before the render.

Export

The control prepares data for export.

Related API Members

The following properties accept/return GridColumnDisplayTextEventKind values:

Remarks

Use the Kind property to specify the type of operations in the grid-like controls’ CustomColumnDisplayText event handlers.

protected void Grid_CustomColumnDisplayText(object sender, ASPxGridViewColumnDisplayTextEventArgs e){
    if (e.Kind== GridColumnDisplayTextEventKind.Export){
      // your code
    }
}
See Also