selectFeature method

void selectFeature(
  1. 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_DimensionLayer_selectFeature(
      _handle,
      feature._handle,
      errorHandler,
    );
  });
}