GridColumnDisplayTextEventKind Enum
In This Article
Lists values that specify types of operations with grid data.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Members
Name | Description |
---|---|
Display
|
The control is being rendered. |
Data
|
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