isRow property

bool isRow

This read-only property is true when this describes a row instead of a column in the #panel. When this is true, the #height, #minimum, and #maximum all describe the row height. Otherwise #width and the other two properties describe the column width.

Implementation

_i2.bool get isRow => _i4.getProperty(
      this,
      'isRow',
    );
void isRow=(bool value)

Implementation

set isRow(_i2.bool value) {
  _i4.setProperty(
    this,
    'isRow',
    value,
  );
}