alignment property
Spot
get
alignment
Gets or sets a default alignment for elements that are in this row or column. The value must be a Spot. The default value is Spot.Default, so that this RowColumnDefinition does not supply any alignment information for the row or column.
When an element's GraphObject#alignment property is Spot.Default, it gets the horizontal alignment from the element's column's RowColumnDefinition and the vertical alignment from the element's row's RowColumnDefinition. When that RowColumnDefinition#alignment property is also Default, it takes the value from the table panel's Panel#defaultAlignment property.
Implementation
_i3.Spot get alignment => _i4.getProperty(
this,
'alignment',
);
set
alignment
(Spot value)
Implementation
set alignment(_i3.Spot value) {
_i4.setProperty(
this,
'alignment',
value,
);
}