TemplateColumnOptions<TModel> Class
Definition
Holds less commonly-used options for a Avalonia.Controls.Models.TreeDataGrid.TemplateColumn<T>.
public class TemplateColumnOptions<TModel>
Constructors
| Name | Description |
|---|---|
| TemplateColumnOptions<TModel> | No summary available. |
TemplateColumnOptions<TModel> Constructor
public TemplateColumnOptions<TModel>()
Properties
| Name | Description |
|---|---|
| IsTextSearchEnabled | Gets or sets a value indicating whether the column takes part in text searches. The default is false. |
| TextSearchValueSelector | Gets or sets a function which selects the search text from a model. |
IsTextSearchEnabled Property
Gets or sets a value indicating whether the column takes part in text searches. The default is false.
public bool IsTextSearchEnabled { get; set; }
TextSearchValueSelector Property
Gets or sets a function which selects the search text from a model.
public Func<TModel, string> TextSearchValueSelector { get; set; }