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

ASPxGridViewColumnDisplayTextEventArgs(GridViewDataColumn, Int32, Object) Constructor

Initializes a new instance of the ASPxGridViewColumnDisplayTextEventArgs class.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ASPxGridViewColumnDisplayTextEventArgs(
    GridViewDataColumn column,
    int visibleIndex,
    object _value
)

Parameters

Name Type Description
column GridViewDataColumn

A GridViewDataColumn descendant that represents the data column which contains the processed cell. This value is assigned to the ASPxGridViewColumnDisplayTextEventArgs.Column property.

visibleIndex Int32

An integer zero-based index that identifies the row where the processed cell resides. This value is assigned to the ASPxGridColumnDisplayTextEventArgs.VisibleIndex property.

_value Object

An object that represents the cell’s edit value. This value is assigned to the ASPxGridColumnDisplayTextEventArgs.Value property.

See Also