Spread Silverlight Documentation
Changed Event (SheetSpanModelBase)


GrapeCity.Windows.SpreadSheet.Data Namespace > SheetSpanModelBase Class : Changed Event
Occurs when the user makes a change to the model that affects the span of cells in the sheet.
Syntax
'Declaration
 
Public Event Changed As System.EventHandler(Of SheetSpanModelChangedEventArgs)
'Usage
 
Dim instance As SheetSpanModelBase
Dim handler As System.EventHandler(Of SheetSpanModelChangedEventArgs)
 
AddHandler instance.Changed, handler
public event System.EventHandler<SheetSpanModelChangedEventArgs> Changed
Event Data

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

PropertyDescription
Gets the column index.  
Gets the number of columns.  
Gets the row index.  
Gets the number of rows.  
Gets the type of change event.  
See Also