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


In This Topic
    RangeGroupStateChanging Event (SheetView)
    In This Topic
    Occurs before the user changes the state of outline (range group) rows or columns.
    Syntax
    'Declaration
     
    Public Event RangeGroupStateChanging As EventHandler(Of RangeGroupStateChangingEventArgs)
    'Usage
     
    Dim instance As SheetView
    Dim handler As EventHandler(Of RangeGroupStateChangingEventArgs)
     
    AddHandler instance.RangeGroupStateChanging, handler
    public event EventHandler<RangeGroupStateChangingEventArgs> RangeGroupStateChanging
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the index of the RangeGroupInfo object whose state is changing.  
    Gets whether the outline (range group) is a group of rows.  
    Gets the level of the RangeGroupInfo object whose state is changing.  
    See Also