isAnimationEnabled property
The view label properties set animation enabled.
Implementation
bool get isAnimationEnabled {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ViewLabelProperties_getIsAnimationEnabled(
_handle, errorHandler);
});
}
Implementation
set isAnimationEnabled(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ViewLabelProperties_setIsAnimationEnabled(
_handle, value, errorHandler);
});
}