ColumnProperty Field
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.
Definition
Namespace: Avalonia.Controls
Assembly: Avalonia.Controls (in Avalonia.Controls.dll)
- C#
- VB
- F#
public static readonly AttachedProperty<int> ColumnProperty
Public Shared ReadOnly ColumnProperty As AttachedProperty(Of Integer)
static val ColumnProperty: AttachedProperty<int>
Field Value
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
.