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

ASPxGridViewEditorCreateEventArgs(GridViewDataColumn, Int32, EditPropertiesBase, Object, Object) Constructor

Initializes a new instance of the ASPxGridViewEditorCreateEventArgs class.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ASPxGridViewEditorCreateEventArgs(
    GridViewDataColumn column,
    int visibleIndex,
    EditPropertiesBase editorProperties,
    object keyValue,
    object value
)

Parameters

Name Type Description
column GridViewDataColumn

A GridViewColumn descendant that represents the data column to which the processed cell corresponds. This value is assigned to the ASPxGridViewEditorCreateEventArgs.Column property.

visibleIndex Int32

An integer value that identifies the row’s index. This value is assigned to the ASPxGridViewItemEventArgs.VisibleIndex property.

editorProperties EditPropertiesBase

An EditPropertiesBase descendant that contains the cell editor’s properties. This value is assigned to the ASPxGridEditorCreateEventArgs.EditorProperties property.

keyValue Object

An object that uniquely identifies the row. This value is assigned to the ASPxGridViewItemEventArgs.KeyValue property.

value Object

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

See Also