Skip to main content

BootstrapCardViewCustomColumnSortEventArgs(BootstrapCardViewColumn, Object, Object, ColumnSortOrder) Constructor

Initializes a new instance of the BootstrapCardViewCustomColumnSortEventArgs class.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public BootstrapCardViewCustomColumnSortEventArgs(
    BootstrapCardViewColumn column,
    object value1,
    object value2,
    ColumnSortOrder sortOrder
)

Parameters

Name Type Description
column BootstrapCardViewColumn

A BootstrapCardViewColumn supported object that represents the column that contains the values to compare. This value is assigned to the BootstrapCardViewCustomColumnSortEventArgs.Column property.

value1 Object

An object that represents the first of the two values being compared. This value is assigned to the GridCustomColumnSortEventArgs.Value1 property.

value2 Object

An object that represents the second of the two values being compared. This value is assigned to the GridCustomColumnSortEventArgs.Value2 property.

sortOrder ColumnSortOrder

A ColumnSortOrder enumeration value specifying the sorting order applied to the column. This value is assigned to the GridCustomColumnSortEventArgs.SortOrder property.

See Also