Summary
Column property. This is an attached property.
Grid defines Column property, so that it can be set
on any element treated as a cell. Column property
specifies child's position with respect to columns.
- Namespace
- Avalonia
.Controls - Containing Type
- Grid
Syntax
public static readonly AttachedProperty<int> ColumnProperty
Remarks
Columns are 0 - based. In order to appear in first column, element
should have Column property set to 0
.
Default value for the property is 0
.