documentPoint property
      
      Point
      get
      documentPoint
      
    
    
Gets or sets the point at which this input event occurred, in document coordinates. The Point is in document coordinates, the same as the GraphObject#position for Parts in the diagram. This should be valid for mouse events. For keyboard events, this is the last available mouse point.
Implementation
_i3.Point get documentPoint => _i4.getProperty(
      this,
      'documentPoint',
    );
      
      set
      documentPoint
      (Point value) 
      
    
    
    
Implementation
set documentPoint(_i3.Point value) {
  _i4.setProperty(
    this,
    'documentPoint',
    value,
  );
}