Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / RangeGroupStateChanged Event


In This Topic
    RangeGroupStateChanged Event (GcSpreadSheet)
    In This Topic
    Occurs after the user has changed the state of the outline (range group) rows or columns.
    Syntax
    'Declaration
     
    Public Event RangeGroupStateChanged As EventHandler(Of RangeGroupStateChangedEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of RangeGroupStateChangedEventArgs)
     
    AddHandler instance.RangeGroupStateChanged, handler
    public event EventHandler<RangeGroupStateChangedEventArgs> RangeGroupStateChanged
    Event Data

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

    PropertyDescription
    Gets the index of the RangeGroupInfo object whose state has changed.  
    Gets whether the outline (range group) is a group of rows.  
    Gets the level of the RangeGroupInfo object whose state has changed.  
    See Also