Class GridViewCustomSortingEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCustomSortingEventArgs : EventArgs
Constructors
GridViewCustomSortingEventArgs(GridViewTemplate, GridViewRowInfo, GridViewRowInfo)
Initializes a new instance of the GridViewCustomSortingEventArgs class.
Declaration
public GridViewCustomSortingEventArgs(GridViewTemplate template, GridViewRowInfo row1, GridViewRowInfo row2)
Parameters
GridViewTemplate
template
The grid view template. |
GridViewRowInfo
row1
The row info1. |
GridViewRowInfo
row2
The row info2. |
GridViewCustomSortingEventArgs(GridViewTemplate, GridViewRowInfo, GridViewRowInfo, Int32)
Initializes a new instance of the GridViewCustomSortingEventArgs class.
Declaration
public GridViewCustomSortingEventArgs(GridViewTemplate template, GridViewRowInfo row1, GridViewRowInfo row2, int sortResult)
Parameters
GridViewTemplate
template
The template. |
GridViewRowInfo
row1
The row1. |
GridViewRowInfo
row2
The row2. |
System.Int32
sortResult
The sort result. |
Properties
Handled
Gets or sets a value indicating whether this GridViewCustomSortingEventArgs is handled.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
Row1
Gets the first row to compare
Declaration
public GridViewRowInfo Row1 { get; }
Property Value
GridViewRowInfo
|
Row2
Gets the second row to compare
Declaration
public GridViewRowInfo Row2 { get; }
Property Value
GridViewRowInfo
|
SortResult
Gets or sets the sorting result.
Declaration
public int SortResult { get; set; }
Property Value
System.Int32
|
Template
Gets the template.
Declaration
public GridViewTemplate Template { get; }
Property Value
GridViewTemplate
The template. |