Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / RowChanged Event


In This Topic
    RowChanged Event
    In This Topic
    Occurs when a change is made to a row or range of rows in this sheet that may require the row or range of rows to be repainted.
    Syntax
    'Declaration
     
    Public Event RowChanged As EventHandler(Of SheetChangedEventArgs)
    'Usage
     
    Dim instance As Worksheet
    Dim handler As EventHandler(Of SheetChangedEventArgs)
     
    AddHandler instance.RowChanged, handler
    public event EventHandler<SheetChangedEventArgs> RowChanged
    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