FlexGrid for WinForms
Sort(SortFlags,Int32,Int32) Method



SortFlags value that specifies the sort direction and options.
First column in the range.
Last column in the range.
Sorts the grid contents based on a column range.
Syntax
'Declaration
 
Public Overloads Overridable Sub Sort( _
   ByVal order As SortFlags, _
   ByVal col1 As Integer, _
   ByVal col2 As Integer _
) 
'Usage
 
Dim instance As C1FlexGridBase
Dim order As SortFlags
Dim col1 As Integer
Dim col2 As Integer
 
instance.Sort(order, col1, col2)
public virtual void Sort( 
   SortFlags order,
   int col1,
   int col2
)
public:
virtual void Sort( 
   SortFlags order,
   int col1,
   int col2
) 

Parameters

order
SortFlags value that specifies the sort direction and options.
col1
First column in the range.
col2
Last column in the range.
Remarks

When you sort multiple columns, the same sorting options are applied to each column, starting from the leftmost column in the range and proceeding to the right.

To sort multiple columns using a different sorting order for each, you can either call the Sort(SortFlags,Int32) method multiple times or set each column's Column.Sort property and call the Sort(SortFlags,Int32) method including the SortFlags.UseColSort flag in the order parameter.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

C1FlexGridBase Class
C1FlexGridBase Members
Overload List

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Send Feedback