Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / BaseSheetSpanModel Class / Changed Event


In This Topic
    Changed Event (BaseSheetSpanModel)
    In This Topic
    Occurs when the user makes a change to the model that affects the span of cells of the sheet.
    Syntax
    'Declaration
     
    
    Public Event Changed As SheetSpanModelEventHandler
    'Usage
     
    
    Dim instance As BaseSheetSpanModel
    Dim handler As SheetSpanModelEventHandler
     
    AddHandler instance.Changed, handler
    public event SheetSpanModelEventHandler Changed
    Event Data

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

    PropertyDescription
    Gets the column index where the event occurred.  
    Gets the number of columns affected.  
    Gets the row index where the event occurred.  
    Gets the number of rows affected.  
    Gets the type of event that occurred.  
    See Also