deleteSelectedElement method
Deletes the selected element from the current GeometryEditor.geometry.
To clear the selection, but leave the state of the GeometryEditor.geometry unchanged, call GeometryEditor.clearSelection instead.
Implementation
void deleteSelectedElement() {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeometryEditor_deleteSelectedElement(
_handle,
errorHandler,
);
});
}