C1.Win.C1FlexGrid Namespace : SortFlags Enumeration |
'Declaration
<FlagsAttribute()> Public Enum SortFlags Inherits System.Enum
'Usage
Dim instance As SortFlags
[Flags()] public enum SortFlags : System.Enum
[Flags()] public enum class SortFlags : public System.Enum
Member | Description |
---|---|
Ascending | Sort in ascending order. |
AsDisplayed | Sort using the string representation of the data. In this mode, "100" appears before "2". |
Descending | Sort in descending order. |
IgnoreCase | Ignore case when sorting strings. |
None | Do not sort. This setting is useful for skipping certain columns when sorting column ranges. |
UseColSort | Use the flags stored in the Column.Sort property of individual Column objects. |
// 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
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