Automatically sorts the rows of a sheet according to the specified column.
Syntax
Visual Basic (Declaration) | |
---|
Public Overloads Sub AutoSortColumn( _
ByVal column As Integer _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim column As Integer
instance.AutoSortColumn(column) |
Parameters
- column
- Index of column to set
Remarks
Example
This example adds random numbers to the sheet, and then auto sorts the column and displays the sort indicator.
C# | Copy Code |
---|
Random r = new Random();
int i;
for (i = 0; i <= 200; i++)
{
fpSpread1.ActiveSheet.SetValue(i, 0, r.Next().ToString());
}
fpSpread1.ActiveSheet.AutoSortColumn(0); |
Visual Basic | Copy Code |
---|
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) |
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