isInDocumentBounds property
bool
get
isInDocumentBounds
Gets or sets whether this Part is part of the document bounds.
The initial value is true. A value of false causes Diagram#computeBounds to ignore this part. If the value is false, it is possible that user will not be able to scroll far enough to see this part, if the part's GraphObject#actualBounds are outside of the Diagram#documentBounds.
Implementation
_i2.bool get isInDocumentBounds => _i4.getProperty(
this,
'isInDocumentBounds',
);
set
isInDocumentBounds
(bool value)
Implementation
set isInDocumentBounds(_i2.bool value) {
_i4.setProperty(
this,
'isInDocumentBounds',
value,
);
}