selectionObjectName property
String
get
selectionObjectName
Gets or sets the name of the GraphObject that should get a selection handle when this part is selected. The value of this property affects the value of #selectionObject. The initial value is an empty string, meaning the whole Part itself gets any selection handle.
If no GraphObject has a GraphObject#name that is this name, #selectionObject returns the whole Part.
Implementation
_i2.String get selectionObjectName => _i4.getProperty(
this,
'selectionObjectName',
);
set
selectionObjectName
(String value)
Implementation
set selectionObjectName(_i2.String value) {
_i4.setProperty(
this,
'selectionObjectName',
value,
);
}