FlexGrid for WPF | ComponentOne
C1.WPF.FlexGrid.4.6.2 Assembly / C1.WPF.FlexGrid Namespace / C1FlexGrid Class / BeginningEdit Event

In This Topic
    BeginningEdit Event (C1FlexGrid)
    In This Topic
    Occurs before a cell enters editing mode.
    Syntax
    'Declaration
     
    Public Event BeginningEdit As EventHandler(Of CellEditEventArgs)
    public event EventHandler<CellEditEventArgs> BeginningEdit
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets a value that determines whether the editing action was canceled.  
    CellRange affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs)
    CellType of the range affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs)
    Index of the column affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs)
    Gets the System.Windows.FrameworkElement responsible for editing the cell value.  
    GridPanel that contains the range affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs)
    Index of the row affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs)
    See Also