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

ASPxGridColumnDisplayTextEventArgs(IWebGridDataColumn, Int32, Object) Constructor

Initializes a new instance of the ASPxGridColumnDisplayTextEventArgs class.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public ASPxGridColumnDisplayTextEventArgs(
    IWebGridDataColumn column,
    int visibleRowIndex,
    object _value
)

Parameters

Name Type Description
column IWebGridDataColumn

An IWebGridDataColumn supported object that represents the data column which contains the processed cell. This value is assigned to the ASPxGridViewColumnDisplayTextEventArgs.Column property.

visibleRowIndex 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