Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / SpreadView Class / RowViewportHeightChanged Event


In This Topic
    RowViewportHeightChanged Event (SpreadView)
    In This Topic
    Occurs when the user has changed a viewport row height.
    Syntax
    'Declaration
     
    Public Event RowViewportHeightChanged As EventHandler(Of RowViewportHeightChangedEventArgs)
    'Usage
     
    Dim instance As SpreadView
    Dim handler As EventHandler(Of RowViewportHeightChangedEventArgs)
     
    AddHandler instance.RowViewportHeightChanged, handler
    public event EventHandler<RowViewportHeightChangedEventArgs> RowViewportHeightChanged
    Event Data

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

    PropertyDescription
    Gets the changed value of the viewport row height.  
    Gets the index of the viewport row whose height has changed.  
    See Also