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


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

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

    PropertyDescription
    Gets the list of columns whose widths have changed.  
    Gets whether the column indexes are row header columns.  
    See Also