isStarted property

bool isStarted

True if an editing session is active, false otherwise.

When true, interactions with the view can affect the state of the GeometryEditor.geometry or GeometryEditor.selectedElement.

Starting or stopping the GeometryEditor raises the GeometryEditor.onIsStartedChanged event.

Implementation

bool get isStarted {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeometryEditor_getIsStarted(
      _handle,
      errorHandler,
    );
  });
}