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

BootstrapGridViewColumnDisplayTextEventArgs(BootstrapGridViewDataColumn, Int32, Object) Constructor

Initializes a new instance of the BootstrapGridViewColumnDisplayTextEventArgs class.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.1.dll

Declaration

public BootstrapGridViewColumnDisplayTextEventArgs(
    BootstrapGridViewDataColumn column,
    int visibleIndex,
    object _value
)

Parameters

Name Type Description
column BootstrapGridViewDataColumn

A BootstrapGridViewDataColumn descendant that represents the data column which contains the processed cell. This value is assigned to the BootstrapGridViewColumnDisplayTextEventArgs.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.

Remarks

Instances of the BootstrapGridViewColumnDisplayTextEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also