position property

Point get position

Gets or sets the position of this GraphObject in container coordinates (either a Panel or the document). Value must be of type Point. You cannot modify the x or y of the value of this property -- if you want to change the position you must set this property to a different Point. Default is Point(NaN, NaN).

For Parts, see also Part#location.

Implementation

_i3.Point get position => _i4.getProperty(
      this,
      'position',
    );
set position (Point value)

Implementation

set position(_i3.Point value) {
  _i4.setProperty(
    this,
    'position',
    value,
  );
}