isAnimationEnabled property

bool isAnimationEnabled

The view label properties set animation enabled.

Implementation

bool get isAnimationEnabled {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ViewLabelProperties_getIsAnimationEnabled(
      _handle,
      errorHandler,
    );
  });
}
void isAnimationEnabled=(bool value)

Implementation

set isAnimationEnabled(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ViewLabelProperties_setIsAnimationEnabled(
      _handle,
      value,
      errorHandler,
    );
  });
}