visibilityMode property

GroupVisibilityMode visibilityMode

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,
  );
}
void visibilityMode=(GroupVisibilityMode value)

Implementation

set visibilityMode(GroupVisibilityMode value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GroupLayer_setVisibilityMode(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}