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