'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.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
CancelEdits | Gets a value that determines whether the editing action was canceled. |
CellRange | CellRange affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
CellType | CellType of the range affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
Column | Index of the column affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
Editor | Gets the System.Windows.FrameworkElement responsible for editing the cell value. |
Panel | GridPanel that contains the range affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
Row | Index of the row affected by the event. (Inherited from C1.WPF.FlexGrid.CellRangeEventArgs) |
See Also