Skip to main content

BootstrapCardViewEditorEventArgs(BootstrapCardViewColumn, Int32, ASPxEditBase, Object, Object) Constructor

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

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public BootstrapCardViewEditorEventArgs(
    BootstrapCardViewColumn column,
    int visibleIndex,
    ASPxEditBase editor,
    object keyValue,
    object value
)

Parameters

Name Type Description
column BootstrapCardViewColumn

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

visibleIndex Int32

An integer value that identifies the data card whose values are being edited. This value is assigned to the ASPxCardViewEditorEventArgs.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 card. This value is assigned to the ASPxCardViewEditorEventArgs.KeyValue property.

value Object

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

See Also