width property

double width

The thickness of the line symbol outline in device-independent pixels (DIPs).

The default value is 1.0.

Implementation

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

Implementation

set width(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LineSymbol_setWidth(
      _handle,
      value,
      errorHandler,
    );
  });
}