viewPoint property

Point get viewPoint

Gets or sets the point at which this input event occurred. The Point is in view coordinates within the viewport, not in document coordinates. This should be valid for mouse events. For keyboard events, this is the last available mouse point.

Implementation

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

Implementation

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