stretch property
Gets or sets the default stretch for elements that are in this row or column. The only accepted values are listed as constant properties of GraphObject: GraphObject.None, GraphObject.Fill, GraphObject.Horizontal, GraphObject.Vertical, or GraphObject.Default. The default value is GraphObject.Default, so that this RowColumnDefinition does not supply any stretch information for the row or column.
When an element's GraphObject#stretch property is GraphObject.Default, it gets the horizontal stretch from the element's column's RowColumnDefinition and the vertical stretch from the element's row's RowColumnDefinition. When that RowColumnDefinition#stretch property is also Default, it takes the value from the table panel's Panel#defaultStretch property.
Implementation
_i3.EnumValue get stretch => _i4.getProperty(
this,
'stretch',
);
Implementation
set stretch(_i3.EnumValue value) {
_i4.setProperty(
this,
'stretch',
value,
);
}