Gets or sets whether frozen rows sort.
Syntax
Visual Basic (Declaration) | |
---|
Public Property SortFrozenRows As Boolean |
C# | |
---|
public bool SortFrozenRows {get; set;} |
Example
This example specifies whether to sort the frozen rows.
C# | Copy Code |
---|
private void fpSpread1_AutoSortingColumn(object sender, FarPoint.Win.Spread.AutoSortingColumnEventArgs e)
{
e.SortFrozenRows = true;
}
|
Visual Basic | Copy Code |
---|
Private Sub FpSpread1_AutoSortingColumn(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.AutoSortingColumnEventArgs)
Handles FpSpread1.AutoSortingColumn
e.SortFrozenRows = True
End Sub
|
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