Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / Appearance Class / SortState Property
Example


In This Topic
    SortState Property
    In This Topic
    Gets or sets the sorting state.
    Syntax
    'Declaration
     
    Public Property SortState As SortState
    'Usage
     
    Dim instance As Appearance
    Dim value As SortState
     
    instance.SortState = value
     
    value = instance.SortState
    public SortState SortState {get; set;}

    Property Value

    SortState setting that specifies the state of the sorting (so the column renderer knows which sorting image to draw)
    Remarks
    This property helps the column header renderer know what sorting image to display in the column header.
    Example
    This example customizes the appearance object.
    FarPoint.Win.Spread.Appearance appr = new FarPoint.Win.Spread.Appearance(); 
    appr.DisplayZero = false; 
    appr.FilterState = FilterState.None; 
    appr.MouseOver = true; 
    appr.RightToLeft = false; 
    appr.ShowActive = true; 
    appr.SortState = SortState.None; 
    appr.VisualStyles = FarPoint.Win.VisualStyles.On; 
    FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); 
    si.SetAppearance(appr); 
    fpSpread1.ActiveSheet.SetStyleInfo(0, 0, si);
    Dim appr As New FarPoint.Win.Spread.Appearance()
    appr.DisplayZero = False
    appr.FilterState = FilterState.None
    appr.MouseOver = True
    appr.RightToLeft = False
    appr.ShowActive = True
    appr.SortState = SortState.None
    appr.VisualStyles = FarPoint.Win.VisualStyles.On
    Dim si As New FarPoint.Win.Spread.StyleInfo
    si.SetAppearance(appr)
    fpSpread1.ActiveSheet.SetStyleInfo(0, 0, si)
    See Also