Skip to main content
Tab

ASPxVerticalGridEditorEventArgs(VerticalGridDataRow, Int32, ASPxEditBase, Object, Object) Constructor

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ASPxVerticalGridEditorEventArgs(
    VerticalGridDataRow row,
    int visibleIndex,
    ASPxEditBase editor,
    object keyValue,
    object value
)

Parameters

Name Type Description
row VerticalGridDataRow

A VerticalGridDataRow descendant that represents the data row whose cell editor is being initialized. This value is assigned to the ASPxVerticalGridEditorEventArgs.Row property.

visibleIndex Int32

An integer value that identifies the data row whose values are being edited.

editor ASPxEditBase

An ASPxEditBase This value is assigned to the ASPxGridEditorEventArgs.Editor property that is the processed cell editor.

keyValue Object

An object that uniquely identifies the record.

value Object

An object that represents the editor’s value. This value is assigned to the ASPxGridEditorEventArgs.Value property.

See Also