style property
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,
);
}
Implementation
set style(SimpleLineSymbolStyle value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SimpleLineSymbol_setStyle(
_handle,
value.coreValue,
errorHandler,
);
});
}