isInDocumentBounds property

bool isInDocumentBounds

Gets or sets whether or not a layer is included in the documentBounds computation. Default value is true. However, setting #isTemporary to true also sets this property to false before version 3.

Implementation

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

Implementation

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