Namespace:DevExpress.Xpf.Grid
Assembly:DevExpress.Xpf.Grid.v19.2.dll

Syntax
C# |
public CustomColumnSortEventArgs(
GridColumn column,
int listSourceRowIndex1,
int listSourceRowIndex2,
object value1,
object value2,
ColumnSortOrder sortOrder
)
|
VB |
Public New(
ByVal column As GridColumn,
ByVal listSourceRowIndex1 As Integer,
ByVal listSourceRowIndex2 As Integer,
ByVal value1 As Object,
ByVal value2 As Object,
ByVal sortOrder As ColumnSortOrder
)
|
Parameters
-
column
-
Type: GridColumn
A GridColumn object, representing the column that contains the values to compare. This value is assigned to the Column property.
-
listSourceRowIndex1
-
Type: Int32
An integer value that specifies the first row's index in the data source. This value is assigned to the ListSourceRowIndex1 property.
-
listSourceRowIndex2
-
Type: Int32
An integer value that specifies the second row's index in the data source. This value is assigned to the ListSourceRowIndex2 property.
-
value1
-
Type: Object
An object that represents the first of the two values being compared. This value is assigned to the Value1 property.
-
value2
-
Type: Object
An object that represents the second of the two values being compared. This value is assigned to the Value2 property.
-
sortOrder
-
Type: ColumnSortOrder
A DevExpress.Data.ColumnSortOrder value that specifies the sort order applied to the specified column. This value is assigned to the SortOrder property.

See Also