Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / Changed Event


In This Topic
    Changed Event (SheetView)
    In This Topic
    Occurs when a change is made to the sheet that may require the entire sheet to be repainted (as with DefaultStyle or AlternatingRows).
    Syntax
    'Declaration
     
    
    Public Event Changed As SheetViewEventHandler
    'Usage
     
    
    Dim instance As SheetView
    Dim handler As SheetViewEventHandler
     
    AddHandler instance.Changed, handler
    public event SheetViewEventHandler Changed
    Event Data

    The event handler receives an argument of type SheetViewEventArgs containing data related to this event. The following SheetViewEventArgs 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.  
    See Also