Spread Windows Forms 12.0 Product Documentation
SortTrailingFrozenRows Property
Example 


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

Reference

AutoSortingColumnEventArgs Class
AutoSortingColumnEventArgs Members