Skip to main content
A newer version of this page is available. .

CustomColumnDataEventArgs(GridColumn, Int32, Object, Boolean) Constructor

Initializes a new instance of the CustomColumnDataEventArgs class with the specified settings.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public CustomColumnDataEventArgs(
    GridColumn column,
    int listSourceRow,
    object _value,
    bool isGetAction
)

Parameters

Name Type Description
column GridColumn

A GridColumn object representing the unbound column. This value is used to initialize the CustomColumnDataEventArgs.Column property.

listSourceRow Int32

An integer value identifying the index in the data source of the row containing the currently processed cell. This value is used to initialize the CustomColumnDataEventArgs.ListSourceRowIndex property.

_value Object

An object representing the currently processed cell’s value. This value is used to initialize the CustomColumnDataEventArgs.Value property.

isGetAction Boolean

A Boolean value specifying whether the cell’s value must be obtained from or saved to a data source. This value is used to initialize the CustomColumnDataEventArgs.IsGetData property.

See Also