Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / AutoSortingColumn Event


In This Topic
    AutoSortingColumn Event
    In This Topic
    Occurs when a column is about to be automatically sorted.
    Syntax
    'Declaration
     
    
    Public Event AutoSortingColumn As AutoSortingColumnEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As AutoSortingColumnEventHandler
     
    AddHandler instance.AutoSortingColumn, handler
    public event AutoSortingColumnEventHandler AutoSortingColumn
    Event Data

    The event handler receives an argument of type AutoSortingColumnEventArgs containing data related to this event. The following AutoSortingColumnEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets whether the automatic sort is ascending.  
    Gets or sets whether to cancel the default processing of automatically sorting columns.  
    Gets the index of the column to be automatically sorted.  
    Gets the sheet whose rows are to be automatically sorted.  
    Gets whether the sort indicator is displayed.  
    Gets or sets whether frozen rows sort.  
    Gets or sets whether trailing frozen rows sort.  
    See Also