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


In This Topic
    ColumnViewportWidthChanged Event (GcSpreadSheet)
    In This Topic
    Occurs when a viewport column width has changed.
    Syntax
    'Declaration
     
    Public Event ColumnViewportWidthChanged As EventHandler(Of ColumnViewportWidthChangedEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of ColumnViewportWidthChangedEventArgs)
     
    AddHandler instance.ColumnViewportWidthChanged, handler
    public event EventHandler<ColumnViewportWidthChangedEventArgs> ColumnViewportWidthChanged
    Event Data

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

    PropertyDescription
    Gets the changed value for the viewport column width.  
    Gets the index of the viewport column whose width has changed.  
    See Also