Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / SheetView Class / EditEnd Event


In This Topic
    EditEnd Event (SheetView)
    In This Topic
    Occurs when a cell leaves edit mode.
    Syntax
    'Declaration
     
    Public Event EditEnd As EventHandler(Of EditCellEventArgs)
    'Usage
     
    Dim instance As SheetView
    Dim handler As EventHandler(Of EditCellEventArgs)
     
    AddHandler instance.EditEnd, handler
    public event EventHandler<EditCellEventArgs> EditEnd
    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