actual property
num
get
actual
This read-only property returns the usable row height or column width, after arrangement, in local coordinates, that objects in this row or column can be arranged within. This does not include #separatorPadding or #separatorStrokeWidth, as #total does.
This value gives the row height if #isRow is true; otherwise this gives the column width. The value is meaningless until after the Table Panel using this RowColumnDefinition has been arranged.
Implementation
_i2.num get actual => _i4.getProperty(
this,
'actual',
);
set
actual
(num value)
Implementation
set actual(_i2.num value) {
_i4.setProperty(
this,
'actual',
value,
);
}