Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Column Class / Changed Event


In This Topic
    Changed Event (Column)
    In This Topic
    Occurs when a property value changes.
    Syntax
    'Declaration
     
    Public Event Changed As EventHandler(Of SheetChangedEventArgs)
    'Usage
     
    Dim instance As Column
    Dim handler As EventHandler(Of SheetChangedEventArgs)
     
    AddHandler instance.Changed, handler
    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