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


In This Topic
    EditChange Event (GcSpreadSheet)
    In This Topic
    Occurs when a cell is in edit mode and the text is changed.
    Syntax
    'Declaration
     
    Public Event EditChange As EventHandler(Of EditCellEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of EditCellEventArgs)
     
    AddHandler instance.EditChange, handler
    public event EventHandler<EditCellEventArgs> EditChange
    Event Data

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

    PropertyDescription
    Gets the cell column index.  
    Gets the cell row index.  
    See Also