Spread Windows Forms 12.0 Product Documentation
AutoSortIndex Property (Column)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Column Class : AutoSortIndex Property
Gets or sets the automatic sort index for the column.
Syntax
'Declaration
 
Public Property AutoSortIndex As Integer
'Usage
 
Dim instance As Column
Dim value As Integer
 
instance.AutoSortIndex = value
 
value = instance.AutoSortIndex
public int AutoSortIndex {get; set;}
Example
This example sets the AutoSortIndex property.
FarPoint.Win.Spread.ColumnHeader ch;
ch = fpSpread1.ActiveSheet.ColumnHeader;
ch.RowCount = 3;
fpSpread1.ActiveSheet.Columns[0].AllowAutoSort = true;
fpSpread1.ActiveSheet.Cells[0, 0].Text = "Alignment";
fpSpread1.ActiveSheet.Columns[0].AutoSortIndex = 1;
Dim ch As FarPoint.Win.Spread.ColumnHeader
ch = FpSpread1.ActiveSheet.ColumnHeader
ch.RowCount = 3
FpSpread1.ActiveSheet.Columns(0).AllowAutoSort = True
FpSpread1.ActiveSheet.Cells(0, 0).Text = "Alignment"
FpSpread1.ActiveSheet.Columns(0).AutoSortIndex = 1
See Also

Reference

Column Class
Column Members