mouseDownPoint property

Point get mouseDownPoint

This read-only property returns the original mouse-down point in document coordinates.

Implementation

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

Implementation

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