New to Telerik UI for .NET MAUIStart a free 30-day trial

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)
Parameters:cellDataGridCellInfo

The cell.

actionActionTrigger

The action.

parameterobject

The 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; }
Property Value:

The parameter.

Gets the ActionTrigger value that triggered the operation.

C#
public ActionTrigger TriggerAction { get; }
Property Value:

The trigger action.