Skip to main content
All docs
V25.1
  • Tab

    GridColumnDisplayTextEventKind Enum

    Lists values that specify types of operations with grid data.

    Namespace: DevExpress.Web

    Assembly: DevExpress.Web.v25.1.dll

    #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