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

Holds information used in ValidateCell command.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class ValidateCellContext

Inheritance: objectValidateCellContext

Constructors

Initializes a new instance of the ValidateCellContext class.

C#
public ValidateCellContext(IList<object> errors, DataGridCellInfo cellInfo)
Parameters:errorsIList<object>

The errors.

cellInfoDataGridCellInfo

The cell info.

Properties

Gets the CellInfo object that represents the current grid cell.

C#
public DataGridCellInfo CellInfo { get; }

Gets the errors (if any) that occurred during the validation.

C#
public IList<object> Errors { get; }