visibilityMode property
The visibility mode for the layers in a table of contents.
Implementation
GroupVisibilityMode get visibilityMode {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GroupLayer_getVisibilityMode(
_handle,
errorHandler,
);
});
return GroupVisibilityMode._fromCoreValue(
coreValue,
);
}
Implementation
set visibilityMode(GroupVisibilityMode value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GroupLayer_setVisibilityMode(
_handle,
value.coreValue,
errorHandler,
);
});
}