Xamarin.Forms | ComponentOne
C1.Xamarin.Forms.Grid Assembly / C1.Xamarin.Forms.Grid Namespace / GridCellFactory Class / OnEditEnded Method
The range that was edited.
The editor.
true if the editing was cancelled.


In This Topic
    OnEditEnded Method (GridCellFactory)
    In This Topic
    Called when the editing of a cell ended.
    Syntax
    'Declaration
     
    
    Public Overrides Sub OnEditEnded( _
       ByVal range As GridCellRange, _
       ByVal editor As Xamarin.Forms.View, _
       ByVal editCancelled As Boolean _
    ) 
    'Usage
     
    
    Dim instance As GridCellFactory
    Dim range As GridCellRange
    Dim editor As Xamarin.Forms.View
    Dim editCancelled As Boolean
     
    instance.OnEditEnded(range, editor, editCancelled)
    public override void OnEditEnded( 
       GridCellRange range,
       Xamarin.Forms.View editor,
       bool editCancelled
    )

    Parameters

    range
    The range that was edited.
    editor
    The editor.
    editCancelled
    true if the editing was cancelled.
    Exceptions
    ExceptionDescription
    The exception that is thrown when a requested method or operation is not implemented.
    See Also