labelPosition property

GridLabelPosition labelPosition

The positioning of the grid's labels.

Implementation

GridLabelPosition get labelPosition {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Grid_getLabelPosition(_handle, errorHandler);
  });
  return GridLabelPosition._fromCoreValue(coreValue);
}
void labelPosition=(GridLabelPosition value)

Implementation

set labelPosition(GridLabelPosition value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Grid_setLabelPosition(
        _handle, value.coreValue, errorHandler);
  });
}