Spread Silverlight Documentation
Changed Event (Row)


GrapeCity.Windows.SpreadSheet.Data Namespace > Row Class : Changed Event
Occurs when a property value changes.
Syntax
'Declaration
 
Public Event Changed As System.EventHandler(Of SheetChangedEventArgs)
'Usage
 
Dim instance As Row
Dim handler As System.EventHandler(Of SheetChangedEventArgs)
 
AddHandler instance.Changed, handler
public event System.EventHandler<SheetChangedEventArgs> Changed
Event Data

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

PropertyDescription
Gets the column index. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
Gets the number of columns. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
Gets the property name. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
Gets the row index. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
Gets the number of rows. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
Gets the sheet area of the cell. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
Gets the change type for the event.  
See Also