FlexPivot for WinForms
SortFlags 列挙体
使用例 使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 : SortFlags 列挙体
Specifies how grid columns should be sorted.
シンタックス
'宣言
 
Public Enum SortFlags 
   Inherits System.Enum
public enum SortFlags : System.Enum 
メンバ
メンバ解説
AscendingSort in ascending order.
AsDisplayedSort using the string representation of the data. In this mode, "100" appears before "2".
DescendingSort in descending order.
IgnoreCaseIgnore case when sorting strings.
NoneDo not sort. This setting is useful for skipping certain columns when sorting column ranges.
UseColSortUse the flags stored in the Column.Sort property of individual Column objects.
解説
This enumeration contains flags that can be combined to customize the sorting process.
使用例
For example, the code below sorts two grid columns ignoring case.
// C#
SortFlags order = SortFlags.Ascending | SortFlags.IgnoreCase;
_flex.Sort(order, col1, col2);
            
' VB
Dim order As SortFlags = SortFlags.Ascending Or SortFlags.IgnoreCase
_flex.Sort(order, col1, col2)
継承階層

System.Object
   System.ValueType
      System.Enum
         C1.Win.C1FlexGrid.SortFlags

参照

C1.Win.C1FlexGrid 名前空間