Spread Windows Forms 7.0 Product Documentation
ColumnAutoSorted Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : ColumnAutoSorted Property


Glossary Item Box

Gets the index of the last column that was automatically sorted for the sheet.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property ColumnAutoSorted As Integer
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As Integer
 
value = instance.ColumnAutoSorted
C# 
public int ColumnAutoSorted {get;}

Property Value

Integer column index of the column that was last automatically sorted

Remarks

This property is available at run time only.

Example

This example illustrates the use of this member by returning the index of the column that was last automatically sorted.
C#Copy Code
Random r = new Random();
int i, j, x;
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);
x = fpSpread1.ActiveSheet.ColumnAutoSorted;
label1.Text = "The last column auto sorted is column " + x.ToString();
Visual BasicCopy Code
Dim r As New Random()
Dim i, j, x 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, True)
x = FpSpread1.ActiveSheet.ColumnAutoSorted
Label1.Text = "The last column to be auto sorted was column " & x.ToString()

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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