Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / TopRowChanged Event


In This Topic
    TopRowChanged Event (GcSpreadSheet)
    In This Topic
    Occurs when the top row changes.
    Syntax
    'Declaration
     
    Public Event TopRowChanged As EventHandler(Of ViewportEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of ViewportEventArgs)
     
    AddHandler instance.TopRowChanged, handler
    public event EventHandler<ViewportEventArgs> TopRowChanged
    Event Data

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

    PropertyDescription
    Gets the index of the new viewport index.  
    Gets the index of the previous viewport index.  
    Gets the index of the viewport in which the change occurred.  
    See Also