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


In This Topic
    ColumnWidthChanging Event (GcSpreadSheet)
    In This Topic
    Occurs when the column width is changing.
    Syntax
    'Declaration
     
    Public Event ColumnWidthChanging As EventHandler(Of ColumnWidthChangingEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of ColumnWidthChangingEventArgs)
     
    AddHandler instance.ColumnWidthChanging, handler
    public event EventHandler<ColumnWidthChangingEventArgs> ColumnWidthChanging
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the list of columns whose widths are changing.  
    Gets whether the column indexes are row header columns.  
    See Also