Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / DefaultSheetSpanModel Class / Changing Event


In This Topic
    Changing Event (DefaultSheetSpanModel)
    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 Changing As SheetSpanModelChangingEventHandler
    'Usage
     
    
    Dim instance As DefaultSheetSpanModel
    Dim handler As SheetSpanModelChangingEventHandler
     
    AddHandler instance.Changing, handler
    public event SheetSpanModelChangingEventHandler Changing
    Event Data

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

    PropertyDescription
    Gets the column index where the event is going to occur.  
    Gets the number of columns affected.  
    Gets the row index where the event is going to occur.  
    Gets the number of rows affected.  
    Gets the type of event that is going to occur.  
    See Also