TextColumnCreateOptions Class
Definition
Holds options for configuring a Avalonia.Controls.TreeDataGridTextColumn via the fluent API.
public class TextColumnCreateOptions
Constructors
| Name | Description |
|---|---|
| TextColumnCreateOptions | No summary available. |
TextColumnCreateOptions Constructor
public TextColumnCreateOptions()
Properties
| Name | Description |
|---|---|
| Culture | Culture info used in conjunction with Avalonia.Controls.TextColumnCreateOptions.StringFormat |
| IsReadOnly | Gets or sets whether the column is read-only. |
| IsTextSearchEnabled | Gets or sets a value indicating whether the column takes part in text searches. |
| StringFormat | Gets or sets the format string for the cells in the column. |
| TextAlignment | Gets or sets the text alignment mode for the cells in the column. |
| TextTrimming | Gets or sets the text trimming mode for the cells in the column. |
| TextWrapping | Gets or sets the text wrapping mode for the cells in the column. |
| AllowTriStateSorting | Gets or sets whether the user can cycle through ascending, descending, and unsorted states when clicking the column header. Inherited from ColumnCreateOptions. |
| BeginEditGestures | Gets or sets the gesture(s) that will cause a cell to enter edit mode. Inherited from ColumnCreateOptions. |
| CanUserResize | Gets or sets a value indicating whether the user can resize a column by dragging. Inherited from ColumnCreateOptions. |
| CanUserSortColumn | Gets or sets a value indicating whether the user can sort a column by clicking. Inherited from ColumnCreateOptions. |
| CompareAscending | Gets or sets a custom comparison for ascending ordered columns. Inherited from ColumnCreateOptions. |
| CompareDescending | Gets or sets a custom comparison for descending ordered columns. Inherited from ColumnCreateOptions. |
| MaxWidth | Gets or sets the maximum width for a column. Inherited from ColumnCreateOptions. |
| MinWidth | Gets or sets the minimum width for a column. Inherited from ColumnCreateOptions. |
| Width | Gets or sets the column width. Inherited from ColumnCreateOptions. |
Culture Property
Culture info used in conjunction with Avalonia.Controls.TextColumnCreateOptions.StringFormat
public System.Globalization.CultureInfo Culture { get; set; }
IsReadOnly Property
Gets or sets whether the column is read-only.
public bool IsReadOnly { get; set; }
IsTextSearchEnabled Property
Gets or sets a value indicating whether the column takes part in text searches.
public bool IsTextSearchEnabled { get; set; }
StringFormat Property
Gets or sets the format string for the cells in the column.
public string StringFormat { get; set; }
TextAlignment Property
Gets or sets the text alignment mode for the cells in the column.
public Avalonia.Media.TextAlignment TextAlignment { get; set; }
TextTrimming Property
Gets or sets the text trimming mode for the cells in the column.
public Avalonia.Media.TextTrimming TextTrimming { get; set; }
TextWrapping Property
Gets or sets the text wrapping mode for the cells in the column.
public Avalonia.Media.TextWrapping TextWrapping { get; set; }