ITextCell Interface
Definition
Represents a text cell in an Avalonia.Controls.ITreeDataGridSource.
public interface ITextCell
Remarks
The interface provides a non-generic view over a Avalonia.Controls.Models.TreeDataGrid.TextCell<T>.
Properties
| Name | Description |
|---|---|
| Text | Gets or sets the cell's value as a string. |
| TextAlignment | Gets the cell's text alignment mode. |
| TextTrimming | Gets the cell's text trimming mode. |
| TextWrapping | Gets the cell's text wrapping mode. |
Text Property
Gets or sets the cell's value as a string.
public string Text { get; set; }
TextAlignment Property
Gets the cell's text alignment mode.
public Avalonia.Media.TextAlignment TextAlignment { get; set; }
TextTrimming Property
Gets the cell's text trimming mode.
public Avalonia.Media.TextTrimming TextTrimming { get; set; }
TextWrapping Property
Gets the cell's text wrapping mode.
public Avalonia.Media.TextWrapping TextWrapping { get; set; }