isDoubleClick property
bool
get
isDoubleClick
Gets or sets whether a double click rather than a single-click is required to insert a new Part at the mouse-up point. The default value is true -- only a double-click will cause a node to be created. Setting this property does not raise any events.
Implementation
_i2.bool get isDoubleClick => _i4.getProperty(
this,
'isDoubleClick',
);
set
isDoubleClick
(bool value)
Implementation
set isDoubleClick(_i2.bool value) {
_i4.setProperty(
this,
'isDoubleClick',
value,
);
}