scaleSymbols property

bool scaleSymbols
inherited

True if the sublayer renderers its symbols based on scale, false otherwise.

Will return false if an error occurs.

Implementation

bool get scaleSymbols {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISSublayer_getScaleSymbols(
        _handle, errorHandler);
  });
}
void scaleSymbols=(bool value)

Implementation

set scaleSymbols(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ArcGISMapImageSublayer_setScaleSymbols(
        _handle, value, errorHandler);
  });
}