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


In This Topic
    ColumnViewportWidthChanging Event (GcSpreadSheet)
    In This Topic
    Occurs when a viewport column is about to be changed.
    Syntax
    'Declaration
     
    Public Event ColumnViewportWidthChanging As EventHandler(Of ColumnViewportWidthChangingEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of ColumnViewportWidthChangingEventArgs)
     
    AddHandler instance.ColumnViewportWidthChanging, handler
    public event EventHandler<ColumnViewportWidthChangingEventArgs> ColumnViewportWidthChanging
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the changed value for the viewport column width.  
    Gets the index of the viewport column whose width is changing.  
    See Also