measuredBounds property
Rect
get
measuredBounds
This read-only property returns the measuredBounds of the GraphObject in container coordinates (either a Panel or the document). This describes the transformed bounds with margins excluded.
You must not modify any of the properties of the Rect that is the value of this property.
As with all read-only properties, using this property as a binding source is unlikely to be useful.
Implementation
_i3.Rect get measuredBounds => _i4.getProperty(
this,
'measuredBounds',
);
set
measuredBounds
(Rect value)
Implementation
set measuredBounds(_i3.Rect value) {
_i4.setProperty(
this,
'measuredBounds',
value,
);
}