delay property
num
get
delay
On touch gestures only, this property gets or sets the time in milliseconds for which the mouse must be stationary before this tool can be started. The default value is 100 milliseconds. Setting this property does not raise any events.
Implementation
_i2.num get delay => _i4.getProperty(
this,
'delay',
);
set
delay
(num value)
Implementation
set delay(_i2.num value) {
_i4.setProperty(
this,
'delay',
value,
);
}