selectable property
bool
get
selectable
Gets or sets whether the user may select this part. The initial value is true.
If you set this to true you may also want to set #selectionObjectName to the GraphObject#named element that you want to be adorned when the Part is selected.
Implementation
_i2.bool get selectable => _i4.getProperty(
this,
'selectable',
);
set
selectable
(bool value)
Implementation
set selectable(_i2.bool value) {
_i4.setProperty(
this,
'selectable',
value,
);
}