dragSize property

Size get dragSize

Gets or sets the distance in view coordinates within which a mouse down-and-up is considered a click and beyond which a mouse movement is considered a drag. The default value is 2 pixels horizontally and vertically for mouse events, and increases by 6 pixels for touch events. This value is used by Tool#isBeyondDragSize.

Implementation

_i3.Size get dragSize => _i4.getProperty(
      this,
      'dragSize',
    );
set dragSize (Size value)

Implementation

set dragSize(_i3.Size value) {
  _i4.setProperty(
    this,
    'dragSize',
    value,
  );
}