showChildrenInLegend property
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,
);
});
}
Implementation
set showChildrenInLegend(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GroupLayer_setShowChildrenInLegend(
_handle,
value,
errorHandler,
);
});
}