Spread Windows Forms 6.0 Product Documentation
AutoSortColumn(Int32,Boolean,Boolean) Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > AutoSortColumn Method : AutoSortColumn(Int32,Boolean,Boolean) Method


column
Index of column to set
ascending
Whether sort is ascending (or else descending)
showIndicator
Whether to display the sort indicator

Glossary Item Box

Automatically sorts the rows of a sheet according to the specified column in the specified order and using the sort indicator as specified.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub AutoSortColumn( _
   ByVal column As Integer, _
   ByVal ascending As Boolean, _
   ByVal showIndicator As Boolean _
) 
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim column As Integer
Dim ascending As Boolean
Dim showIndicator As Boolean
 
instance.AutoSortColumn(column, ascending, showIndicator)
C# 
public void AutoSortColumn( 
   int column,
   bool ascending,
   bool showIndicator
)

Parameters

column
Index of column to set
ascending
Whether sort is ascending (or else descending)
showIndicator
Whether to display the sort indicator

Remarks

See the explanation in the AutoSortColumn methods overview.

Example

This example sets whether to allow automatic sorting in the specified column, if it should be sorted in ascending order, and whether to show the sort indicator.

C#Copy Code
Random r = new Random();
int i, j;
for (i = 0; i<= 50; i++)
{
    for (j = 0; j<=3; j++)
        fpSpread1.ActiveSheet.SetValue(i, j, r.Next(1, 200).ToString());
}
fpSpread1.ActiveSheet.AutoSortColumn(0, true, false);
Visual BasicCopy Code
Dim r As New Random()
Dim i, j As Integer
For i = 0 To 50
    For j = 0 To 3
        FpSpread1.ActiveSheet.SetValue(i, j, r.Next(1, 200).ToString())
    Next j
Next i
FpSpread1.ActiveSheet.AutoSortColumn(0, True, False)

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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.