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


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