Class DataGridCellEditContext
An object carrying contextual information during a cell edit operation. This object is the BindingContext in the cell edit template.
Inheritance
Namespace: Telerik.XamarinForms.DataGrid
Assembly: Telerik.XamarinForms.DataGrid.dll
Syntax
public class DataGridCellEditContext : Object
Properties
CancelEditCommand
Gets a command that executes the CancelEdit() method.
Declaration
public ICommand CancelEditCommand { get; }
Property Value
System.Windows.Input.ICommand
|
Column
Gets the column in which the cell that is being edited resides.
Declaration
public DataGridColumn Column { get; }
Property Value
DataGridColumn
|
CommitEditCommand
Gets a command that executes the Telerik.XamarinForms.DataGrid.RadDataGrid.CommitEdit(Telerik.XamarinForms.DataGrid.DataGridCellInfo,Telerik.XamarinForms.DataGrid.Commands.ActionTrigger,System.Object) method.
Declaration
public ICommand CommitEditCommand { get; }
Property Value
System.Windows.Input.ICommand
|
DataGrid
Item
Gets the business item that is being edited.
Declaration
public object Item { get; }
Property Value
System.Object
|