startPoint property

Point get startPoint

Gets or sets the mouse point from which parts start to move. The value is a Point in document coordinates. This property is normally set to the diagram's mouse-down point in #doActivate, but may be set to a different point if parts are being copied from a different control. Setting this property does not raise any events.

Implementation

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

Implementation

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