Skip to main content

ITreeDataGridCellModel Interface

Definition

Assembly:Avalonia.Controls.TreeDataGrid
Package:Avalonia.Controls.TreeDataGrid

Represents a cell in an Avalonia.Controls.TreeDataGridSource.

public interface ITreeDataGridCellModel

Properties

NameDescription
CanEditGets a value indicating whether the cell can enter edit mode.
EditGesturesGets the gesture(s) that will cause the cell to enter edit mode.
ValueGets the value of the cell.

CanEdit Property

Gets a value indicating whether the cell can enter edit mode.

public bool CanEdit { get; set; }

EditGestures Property

Gets the gesture(s) that will cause the cell to enter edit mode.

public Avalonia.Controls.BeginEditGestures EditGestures { get; set; }

Value Property

Gets the value of the cell.

public object Value { get; set; }