labelVisibility property

bool labelVisibility

The visibility of the grid's labels.

Implementation

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

Implementation

set labelVisibility(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Grid_setLabelVisibility(
      _handle,
      value,
      errorHandler,
    );
  });
}