Skip to main content

ICell Interface

Definition

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

Represents a cell in an Avalonia.Controls.ITreeDataGridSource.

public interface ICell

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.Models.TreeDataGrid.BeginEditGestures EditGestures { get; set; }

Value Property

Gets the value of the cell.

public object Value { get; set; }