move method

void move(
  1. Point newpos, [
  2. bool? useLocation
])

Move this Group and all of its member parts, recursively.

This method does not perform a transaction or start any animation. @param {Point} newpos a new Point in document coordinates. @param {boolean=} useLocation true if you want to set the #location instead of the position. False by default.

Implementation

void move(
  _i3.Point newpos, [
  _i2.bool? useLocation,
]) {
  _i4.callMethod(
    this,
    'move',
    [
      newpos,
      useLocation ?? _i5.undefined,
    ],
  );
}