outlineWidth property

double outlineWidth

The width of the text symbol outline in device-independent pixels (DIPs).

The default value is 0.0.

Implementation

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

Implementation

set outlineWidth(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_TextSymbol_setOutlineWidth(
      _handle,
      value,
      errorHandler,
    );
  });
}