showInLegend property
override
A flag indicating whether the layer content participates in the legend.
A flag indicating whether the layer content is shown in the legend.
Implementation
@override
bool get showInLegend {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Layer_getShowInLegend(_handle, errorHandler);
});
}
override
Implementation
@override
set showInLegend(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Layer_setShowInLegend(_handle, value, errorHandler);
});
}