Spread Windows Forms 12.0 Product Documentation
SortFrozenRows Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > AutoSortingColumnEventArgs Class : SortFrozenRows Property
Gets or sets whether frozen rows sort.
Syntax
'Declaration
 
Public Property SortFrozenRows As Boolean
'Usage
 
Dim instance As AutoSortingColumnEventArgs
Dim value As Boolean
 
instance.SortFrozenRows = value
 
value = instance.SortFrozenRows
public bool SortFrozenRows {get; set;}
Example
This example specifies whether to sort the frozen rows.
private void fpSpread1_AutoSortingColumn(object sender, FarPoint.Win.Spread.AutoSortingColumnEventArgs e)
{
e.SortFrozenRows = true;
}
Private Sub FpSpread1_AutoSortingColumn(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.AutoSortingColumnEventArgs)
Handles FpSpread1.AutoSortingColumn
e.SortFrozenRows = True
End Sub
See Also

Reference

AutoSortingColumnEventArgs Class
AutoSortingColumnEventArgs Members