relativePosition property
Point
get
relativePosition
Gets or sets the position of this node relative to its parent node.
This informational property is computed during TreeLayout#doLayout. You should probably not be setting this property.
Implementation
_i3.Point get relativePosition => _i4.getProperty(
this,
'relativePosition',
);
set
relativePosition
(Point value)
Implementation
set relativePosition(_i3.Point value) {
_i4.setProperty(
this,
'relativePosition',
value,
);
}