Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / SheetSpanModelBase Class / Changed Event


In This Topic
    Changed Event (SheetSpanModelBase)
    In This Topic
    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 EventHandler(Of SheetSpanModelChangedEventArgs)
    'Usage
     
    Dim instance As SheetSpanModelBase
    Dim handler As EventHandler(Of SheetSpanModelChangedEventArgs)
     
    AddHandler instance.Changed, handler
    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