Gets the sort indicator for the specified row or column.
            
            
            
 Syntax
Syntax
            Parameters
- index
- Row or column index
Return Value
SortIndicator setting that determines how the sort indicator is displayed for the column
 
            
						
            
            
            
             Example
Example
This example sets and returns the sort indicator for the specified column.
             
| C# |  Copy Code | 
|---|
| 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(); | 
| Visual Basic |  Copy Code | 
|---|
| 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() | 
 Requirements
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
See Also