antiAlias property
True if the line symbol is drawn with anti-aliasing, false otherwise.
Implementation
bool get antiAlias {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LineSymbol_getAntiAlias(_handle, errorHandler);
});
}
Implementation
set antiAlias(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_LineSymbol_setAntiAlias(_handle, value, errorHandler);
});
}