allowGeometrySelection property

bool allowGeometrySelection

True if the entire geometry can be interactively selected, false otherwise. Default is true.

If true, you can tap multiple times on elements of the geometry to make the entire geometry selected.

Whether true or false, the entire geometry can be selected by GeometryEditor.selectGeometry.

InteractionConfiguration.setAllowSelection sets this property.

Implementation

bool get allowGeometrySelection {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_InteractionConfiguration_getAllowGeometrySelection(
      _handle,
      errorHandler,
    );
  });
}
void allowGeometrySelection=(bool value)

Implementation

set allowGeometrySelection(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_InteractionConfiguration_setAllowGeometrySelection(
      _handle,
      value,
      errorHandler,
    );
  });
}