showChildrenInLegend property

bool showChildrenInLegend

Determines if the child layers should be shown in the map legend.

Implementation

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

Implementation

set showChildrenInLegend(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GroupLayer_setShowChildrenInLegend(
      _handle,
      value,
      errorHandler,
    );
  });
}