Spread Windows Forms 12.0 Product Documentation
GetSortIndicator Method (ISheetAxisModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > ISheetAxisModel Interface : GetSortIndicator Method
Row or column index
Gets the sort indicator for the specified row or column.
Syntax
'Declaration
 
Function GetSortIndicator( _
   ByVal index As Integer _
) As SortIndicator
'Usage
 
Dim instance As ISheetAxisModel
Dim index As Integer
Dim value As SortIndicator
 
value = instance.GetSortIndicator(index)
SortIndicator GetSortIndicator( 
   int index
)

Parameters

index
Row or column index

Return Value

SortIndicator setting that determines how the sort indicator is displayed for the column
Example
This example sets and returns the sort indicator for the specified column.
FarPoint.Win.Spread.Model.ISheetAxisModel isa;
isa = (FarPoint.Win.Spread.Model.ISheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis;
isa.SetSortIndicator(1, FarPoint.Win.Spread.Model.SortIndicator.Descending);
label1.Text = "The sort indicator for column 2 is " + isa.GetSortIndicator(1).ToString();
Dim isa As FarPoint.Win.Spread.Model.ISheetAxisModel
isa = FpSpread1.ActiveSheet.Models.ColumnAxis
isa.SetSortIndicator(1, FarPoint.Win.Spread.Model.SortIndicator.Descending)
Label1.Text = "The sort indicator for column 2 is " & isa.GetSortIndicator(1).ToString()
See Also

Reference

ISheetAxisModel Interface
ISheetAxisModel Members
SetSortIndicator Method