'Declaration Public Enum SortState Inherits System.Enum
'Usage Dim instance As SortState
public enum SortState : System.Enum
'Declaration Public Enum SortState Inherits System.Enum
'Usage Dim instance As SortState
public enum SortState : System.Enum
Member | Description |
---|---|
Ascending | Sorted in ascending order. |
AscendingDisabled | Sorted in ascending order, and the control is disabled. |
Descending | Sorted in descending order. |
DescendingDisabled | Sorted in descending order, and the control is disabled. |
None | Sorting is not enabled. |
Unsorted | Sorting is available, but not currently in use. |
UnsortedDisabled | Sorting is not enabled, and the control is disabled. |
FarPoint.Win.Spread.Appearance appr = new FarPoint.Win.Spread.Appearance(Color.Lavender, Color.LavenderBlush, new Font("Ms Sans Serif", 10), CellHorizontalAlignment.Center, CellVerticalAlignment.Center, true, true, Color.Yellow, Color.Aqua, Color.Bisque, Color.Azure, Win.VisualStyles.On, SortState.None, FilterState.None, true, true); FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); si.SetAppearance(appr); fpSpread1.ActiveSheet.SetStyleInfo(-1, -1, si);
Dim appr As New FarPoint.Win.Spread.Appearance(Color.Lavender, Color.LavenderBlush, New Font("Ms Sans Serif", 10), CellHorizontalAlignment.Center, CellVerticalAlignment.Center, True, True, Color.Yellow, Color.Aqua, Color.Bisque, Color.Azure, Win.VisualStyles.On, SortState.None, FilterState.None, True, True) Dim si As New FarPoint.Win.Spread.StyleInfo si.SetAppearance(appr) fpSpread1.ActiveSheet.SetStyleInfo(-1, -1, si)
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.SortState
FarPoint.Win.Spread Namespace
SortState Property (Appearance Class)