allowPartSelection property
True to allow a part of a Multipart geometry (Polyline or Polygon) to be selected interactively, false otherwise. Default is true.
If true, you can tap on the edge of a polygon or polyline GeometryEditorGeometry in order to the select the part.
Whether true or false, a part can be selected by GeometryEditor.selectPart. Parts are also selected after creation using a FreehandTool.
InteractionConfiguration.setAllowSelection sets this property.
Implementation
bool get allowPartSelection {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_InteractionConfiguration_getAllowPartSelection(
_handle,
errorHandler,
);
});
}
Implementation
set allowPartSelection(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_InteractionConfiguration_setAllowPartSelection(
_handle,
value,
errorHandler,
);
});
}