isActionable property
bool
get
isActionable
This property determines whether or not this GraphObject's events occur before all other events, including selection. This enables the #actionDown, #actionMove, #actionUp, and #actionCancel events, which are all handled by the ActionTool.
This object does not get any mouse/touch events if it is not #visible or if it is not #pickable.
This property is infrequently used -- typically only when implementing objects that act as buttons or knobs or sliders. The default value is false.
Implementation
_i2.bool get isActionable => _i4.getProperty(
this,
'isActionable',
);
set
isActionable
(bool value)
Implementation
set isActionable(_i2.bool value) {
_i4.setProperty(
this,
'isActionable',
value,
);
}