TreeDataGridBoundColumn Class
Definition
Base class for columns which select cell values from a model using a binding.
public class TreeDataGridBoundColumn
Properties
| Name | Description |
|---|---|
| Binding | Gets or sets the binding which selects the column value from the model. |
| IsReadOnly | Gets or sets a value indicating whether the column is readonly. |
| ActualWidth | Gets the actual width of the column after measurement. Inherited from TreeDataGridColumn. |
| AllowTriStateSorting | Gets or sets whether the user can cycle through ascending, descending, and unsorted states when clicking the column header. Inherited from TreeDataGridColumn. |
| BeginEditGestures | Gets or sets the gesture(s) that will cause a cell to enter edit mode. Inherited from TreeDataGridColumn. |
| CanUserResize | Gets or sets a value indicating whether the user can resize the column by dragging. Inherited from TreeDataGridColumn. |
| CanUserSortColumn | Gets or sets a value indicating whether the user can sort the column by clicking. Inherited from TreeDataGridColumn. |
| CompareAscending | Gets or sets a custom comparison for ascending sort order. Inherited from TreeDataGridColumn. |
| CompareDescending | Gets or sets a custom comparison for descending sort order. Inherited from TreeDataGridColumn. |
| Header | Gets or sets the column header. Inherited from TreeDataGridColumn. |
| IsVisible | Gets or sets a value indicating whether the column is visible. Inherited from TreeDataGridColumn. |
| MaxWidth | Gets or sets the maximum width for the column. Inherited from TreeDataGridColumn. |
| MinWidth | Gets or sets the minimum width for the column. Inherited from TreeDataGridColumn. |
| SortDirection | Gets or sets the sort direction indicator that will be displayed on the column. Inherited from TreeDataGridColumn. |
| Tag | Gets or sets a user-defined object attached to the column. Inherited from TreeDataGridColumn. |
| Width | Gets or sets the width of the column. Inherited from TreeDataGridColumn. |
Binding Property
Gets or sets the binding which selects the column value from the model.
public Avalonia.Data.BindingBase Binding { get; set; }
IsReadOnly Property
Gets or sets a value indicating whether the column is readonly.
public bool IsReadOnly { get; set; }
Fields
BindingProperty Field
Defines the Avalonia.Controls.TreeDataGridBoundColumn.Binding property.
public Avalonia.StyledProperty<Avalonia.Data.BindingBase> BindingProperty
IsReadOnlyProperty Field
Defines the Avalonia.Controls.TreeDataGridBoundColumn.IsReadOnly property.
public Avalonia.StyledProperty<bool> IsReadOnlyProperty