FlexGrid for WPF | ComponentOne
C1.WPF.FlexGrid.4.6.2 Assembly / C1.WPF.FlexGrid Namespace / CellEditEventArgs Class / CellEditEventArgs Constructor
GridPanel that contains the range.
CellRange represented by this object.
System.Windows.FrameworkElement used to edit the cell value.
Value that indicates whether the edits are being committed or canceled.

In This Topic
    CellEditEventArgs Constructor
    In This Topic
    Initializes a new instance of a CellEditEventArgs.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal panel As GridPanel, _
       ByVal rng As CellRange, _
       ByVal editor As FrameworkElement, _
       ByVal cancelEdits As Boolean _
    )
    public CellEditEventArgs( 
       GridPanel panel,
       CellRange rng,
       FrameworkElement editor,
       bool cancelEdits
    )

    Parameters

    panel
    GridPanel that contains the range.
    rng
    CellRange represented by this object.
    editor
    System.Windows.FrameworkElement used to edit the cell value.
    cancelEdits
    Value that indicates whether the edits are being committed or canceled.
    See Also