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


column
Index of the single column that is set
allowAutoSort
Whether to allow automatic sorting for the specified column

Glossary Item Box

Sets whether the specified column on this sheet allows automatic sorting.

Syntax

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

Parameters

column
Index of the single column that is set
allowAutoSort
Whether to allow automatic sorting for the specified column

Remarks

The default is for columns not to allow automatic sorting.

Example

This example illustrates the use of this member by returning whether the specified column allows automatic sorting.
C#Copy Code
Random r = new Random();
int i;
bool b;
for (i = 0; i <= 200; i++)
{
    fpSpread1.ActiveSheet.SetValue(i, 0, r.Next().ToString());
}
fpSpread1.ActiveSheet.SetColumnAllowAutoSort(0, true);
b = fpSpread1.ActiveSheet.GetColumnAllowAutoSort(0);
label1.Text = "GetColumnAllowAutoSort = " + b.ToString() + " - Click on the column header to sort.";
Visual BasicCopy Code
Dim r As New Random()
Dim i As Integer
Dim b As Boolean
For i = 0 To 200
    FpSpread1.ActiveSheet.SetValue(i, 0, r.Next.ToString())
Next
FpSpread1.ActiveSheet.SetColumnAllowAutoSort(0, True)
b = FpSpread1.ActiveSheet.GetColumnAllowAutoSort(0)
Label1.Text = "GetColumnAllowAutoSort = " & b.ToString() & " - Click on the column header to sort."

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.