Spread Windows Forms 12.0 Product Documentation
AutoSortColumn(Int32) Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > AutoSortColumn Method : AutoSortColumn(Int32) Method
Index of column to set
Automatically sorts the rows of a sheet according to the specified column.
Syntax
'Declaration
 
Public Overloads Sub AutoSortColumn( _
   ByVal column As Integer _
) 
'Usage
 
Dim instance As SheetView
Dim column As Integer
 
instance.AutoSortColumn(column)
public void AutoSortColumn( 
   int column
)

Parameters

column
Index of column to set
Remarks
See the explanation in the AutoSortColumn methods overview.
Example
This example adds random numbers to the sheet, and then auto sorts the column and displays the sort indicator.
Random r = new Random();
int i;
for (i = 0; i <= 200; i++)
{
    fpSpread1.ActiveSheet.SetValue(i, 0, r.Next().ToString());
}
fpSpread1.ActiveSheet.AutoSortColumn(0);
Dim r As New Random()
Dim i As Integer
For i = 0 To 200
    FpSpread1.ActiveSheet.SetValue(i, 0, r.Next.ToString())
Next
FpSpread1.ActiveSheet.AutoSortColumn(0)
See Also

Reference

SheetView Class
SheetView Members
Overload List