allowVertexSelection property
True to allow vertices to be selected interactively, false otherwise. Default is true.
If true, you can position the reticle over a vertex and tap to select it. If ReticleInteractionConfiguration.allowMovingSelectedElement is also true then the tap will also start a move.
Whether true or false, a vertex may still become selected in other ways, for example by a call to GeometryEditor.selectVertex, or when a new vertex is created.
Implementation
bool get allowVertexSelection {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore
.RT_ReticleInteractionConfiguration_getAllowVertexSelection(
_handle,
errorHandler,
);
});
}
Implementation
set allowVertexSelection(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ReticleInteractionConfiguration_setAllowVertexSelection(
_handle,
value,
errorHandler,
);
});
}