Spread Silverlight Documentation
RangeGroupStateChanging Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : RangeGroupStateChanging Event
Occurs before the user changes the state of outline (range group) rows or columns.
Syntax
'Declaration
 
Public Event RangeGroupStateChanging As System.EventHandler(Of RangeGroupStateChangingEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of RangeGroupStateChangingEventArgs)
 
AddHandler instance.RangeGroupStateChanging, handler
public event System.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