ICell Interface
Definition
Represents a cell in an Avalonia.Controls.ITreeDataGridSource.
public interface ICell
Properties
| Name | Description |
|---|---|
| CanEdit | Gets a value indicating whether the cell can enter edit mode. |
| EditGestures | Gets the gesture(s) that will cause the cell to enter edit mode. |
| Value | Gets 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; }