lineWidth property

double lineWidth

The width of the grid lines in device-independent pixels (DIP).

This value must be greater than or equal to 0. Setting the grid line width to 0 will make grid lines invisible. The default value is 0.1.

Implementation

double get lineWidth {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_BackgroundGrid_getGridLineWidth(
      _handle,
      errorHandler,
    );
  });
}
void lineWidth=(double value)

Implementation

set lineWidth(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_BackgroundGrid_setGridLineWidth(
      _handle,
      value,
      errorHandler,
    );
  });
}