antiAlias property

bool antiAlias

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,
    );
  });
}
void antiAlias=(bool value)

Implementation

set antiAlias(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LineSymbol_setAntiAlias(
      _handle,
      value,
      errorHandler,
    );
  });
}