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


In This Topic
    RangeGroupStateChanged Event (SheetView)
    In This Topic
    Occurs when the user has changed the state of outline (range group) rows or columns.
    Syntax
    'Declaration
     
    Public Event RangeGroupStateChanged As EventHandler(Of RangeGroupStateChangedEventArgs)
    'Usage
     
    Dim instance As SheetView
    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