style property

SimpleLineSymbolStyle style

The style of the simple line symbol.

SimpleLineSymbolStyle.solid if an error occurs.

Implementation

SimpleLineSymbolStyle get style {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_SimpleLineSymbol_getStyle(
      _handle,
      errorHandler,
    );
  });
  return SimpleLineSymbolStyle._fromCoreValue(
    coreValue,
  );
}
void style=(SimpleLineSymbolStyle value)

Implementation

set style(SimpleLineSymbolStyle value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_SimpleLineSymbol_setStyle(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}