markerPlacement property
The simple line symbol end marker placement of the simple line symbol.
Implementation
SimpleLineSymbolMarkerPlacement get markerPlacement {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SimpleLineSymbol_getMarkerPlacement(
_handle,
errorHandler,
);
});
return SimpleLineSymbolMarkerPlacement._fromCoreValue(
coreValue,
);
}
Implementation
set markerPlacement(SimpleLineSymbolMarkerPlacement value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SimpleLineSymbol_setMarkerPlacement(
_handle,
value.coreValue,
errorHandler,
);
});
}