'DeclarationPublic 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.Xaml.FlexGrid.CellRangeEventArgs) | 
| CellType | CellType of the range affected by the event. (Inherited from C1.Xaml.FlexGrid.CellRangeEventArgs) | 
| Column | Index of the column affected by the event. (Inherited from C1.Xaml.FlexGrid.CellRangeEventArgs) | 
| Editor | Gets the Windows.UI.Xaml.FrameworkElement responsible for editing the cell value. | 
| Panel | GridPanel that contains the range affected by the event. (Inherited from C1.Xaml.FlexGrid.CellRangeEventArgs) | 
| Row | Index of the row affected by the event. (Inherited from C1.Xaml.FlexGrid.CellRangeEventArgs) | 
See Also