total property

num total

This read-only property returns the total arranged row height or column width, after arrangement, in local coordinates. This value gives the #actual size plus the #separatorPadding and #separatorStrokeWidth.

This value gives the vertical space occupied by the row if #isRow is true; otherwise this gives the horizontal space occupied by the column. The value is meaningless until after the Table Panel using this RowColumnDefinition has been arranged.

Implementation

_i2.num get total => _i4.getProperty(
      this,
      'total',
    );
void total=(num value)

Implementation

set total(_i2.num value) {
  _i4.setProperty(
    this,
    'total',
    value,
  );
}