Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / ColumnChanged Event


In This Topic
    ColumnChanged Event
    In This Topic
    Occurs when a change is made to a column or range of columns in this sheet that may require the column or range of columns to be repainted.
    Syntax
    'Declaration
     
    Public Event ColumnChanged As EventHandler(Of SheetChangedEventArgs)
    'Usage
     
    Dim instance As Worksheet
    Dim handler As EventHandler(Of SheetChangedEventArgs)
     
    AddHandler instance.ColumnChanged, handler
    public event EventHandler<SheetChangedEventArgs> ColumnChanged
    Event Data

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

    PropertyDescription
    Gets the column index. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
    Gets the number of columns. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
    Gets the property name. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
    Gets the row index. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
    Gets the number of rows. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
    Gets the sheet area of the cell. (Inherited from GrapeCity.Windows.SpreadSheet.Data.CellChangedEventArgs)
    Gets the change type for the event.  
    See Also