Spread Silverlight Documentation
RangeGroupStateChanged Event (SheetView)


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