Class EditContext
Holds information associated with a row edit operation within a RadDataGrid instance.
Inheritance
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class EditContext : Object
Constructors
EditContext(DataGridCellInfo, ActionTrigger, Object)
Initializes a new instance of the EditContext class.
Declaration
public EditContext(DataGridCellInfo cell, ActionTrigger action, object parameter)
Parameters
DataGridCellInfo
cell
The cell. |
ActionTrigger
action
The action. |
System.Object
parameter
The parameter. |
Properties
CellInfo
Gets the cell info associated with the operation.
Declaration
public DataGridCellInfo CellInfo { get; }
Property Value
DataGridCellInfo
|
Parameter
Gets an optional parameter holding additional information associated with the operation.
Declaration
public object Parameter { get; }
Property Value
System.Object
The parameter. |
TriggerAction
Gets the ActionTrigger value that triggered the operation.
Declaration
public ActionTrigger TriggerAction { get; }
Property Value
ActionTrigger
The trigger action. |