selectFeature method
- Feature feature
Selects the given feature and adds it to the current list of selected features.
Parameters:
feature
— The feature.
Implementation
void selectFeature(
Feature feature,
) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_AnnotationLayer_selectFeature(
_handle,
feature._handle,
errorHandler,
);
});
}