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

ASPxGridViewEditorEventArgs(GridViewDataColumn, Int32, ASPxEditBase, Object, Object) Constructor

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public ASPxGridViewEditorEventArgs(
    GridViewDataColumn column,
    int visibleIndex,
    ASPxEditBase editor,
    object keyValue,
    object value
)

Parameters

Name Type Description
column GridViewDataColumn

A GridViewDataColumn descendant that represents the data column whose cell editor is being initialized. This value is assigned to the ASPxGridViewEditorEventArgs.Column property.

visibleIndex Int32

An integer value that identifies the data row whose values are being edited. This value is assigned to the ASPxGridViewItemEventArgs.VisibleIndex property.

editor ASPxEditBase

An ASPxEditBase descendant that represents the processed cell editor. This value is assigned to the ASPxGridEditorEventArgs.Editor 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 editor’s value. This value is assigned to the ASPxGridEditorEventArgs.Value property.

See Also