fixedBounds property

Rect get fixedBounds

Gets or sets a fixed bounding rectangle to be returned by #documentBounds and #computeBounds. By default this has NaN values, meaning that #computeBounds will compute the union of all of the parts in the Diagram to determine the #documentBounds. If all x/y/width/height values are real numbers, this value is used as the #documentBounds.

Implementation

_i3.Rect get fixedBounds => _i4.getProperty(
      this,
      'fixedBounds',
    );
set fixedBounds (Rect value)

Implementation

set fixedBounds(_i3.Rect value) {
  _i4.setProperty(
    this,
    'fixedBounds',
    value,
  );
}