markerStyle property
The simple line symbol end marker style of the simple line symbol.
Implementation
SimpleLineSymbolMarkerStyle get markerStyle {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SimpleLineSymbol_getMarkerStyle(
_handle,
errorHandler,
);
});
return SimpleLineSymbolMarkerStyle._fromCoreValue(
coreValue,
);
}
Implementation
set markerStyle(SimpleLineSymbolMarkerStyle value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SimpleLineSymbol_setMarkerStyle(
_handle,
value.coreValue,
errorHandler,
);
});
}