Class ValidateCellContext
Holds information used in ValidateCell command.
Inheritance
System.Object
ValidateCellContext
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ValidateCellContext : Object
Constructors
ValidateCellContext(IList<Object>, DataGridCellInfo)
Initializes a new instance of the ValidateCellContext class.
Declaration
public ValidateCellContext(IList<object> errors, DataGridCellInfo cellInfo)
Parameters
System.Collections.Generic.IList<System.Object>
errors
The errors. |
DataGridCellInfo
cellInfo
The cell info. |
Properties
CellInfo
Gets the CellInfo object that represents the current grid cell.
Declaration
public DataGridCellInfo CellInfo { get; }
Property Value
DataGridCellInfo
|
Errors
Gets the errors (if any) that occurred during the validation.
Declaration
public IList<object> Errors { get; }
Property Value
System.Collections.Generic.IList<System.Object>
|