ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Animation functions / Animation of controls
  • Animating a group of controls
  • Special cases
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Enables a control or a group of controls in a window. An animation can be set on the controls during this operation.
Universal Windows 10 App No animation can be played when controls are enabled.
Example
// Enables the GR_Name group of controls
ControlEnabled(GR_Name, animFadeIn, 200)
Syntax
ControlEnabled(<Control name> [, <Type of animation> [, <Animation duration>]])
<Control name>: Name of the control or name of a group of controls
Name of the control or group of controls to enable.
<Type of animation>: Optional Integer constant
Type of animation to play:
animCoverDownThe new element appears from the top and covers the initial element.
animCoverFromCenterThe new element appears from the center and covers the initial element.
animCoverFromCornersThe new element appears from the corners and covers the initial element.
animCoverLeftThe new element appears from the right and covers the initial element.
animCoverRightThe new element appears from the left and covers the initial element.
animCoverUpThe new element appears from the bottom and covers the initial element.
animFadeInFade-in animation.
animFlipDownwardDiagonalFlip around the diagonal that goes from the top left to the bottom right.
animFlipUpwardDiagonalFlip around the diagonal that goes from the top right to the bottom left.
animShrinkAndCoverFromCornersThe initial element shrinks and the new element appears from the corners.
animSlideDownSlide down.
animSlideLeftSlide left.
animSlideRightSlide right.
animSlideUpSlide up.
Universal Windows 10 App This parameter is ignored. No animation can be played when the control is enabled.
<Animation duration>: Optional integer or optional Duration
Duration of animation in hundredths of a second. This parameter can correspond to:
  • an integer corresponding to the number of hundredths of a second,
  • a Duration variable,
  • the duration in a readable format (e.g., '1cs' or '10 ms').
We recommend that you use a short duration (up to 1 second).
The application is locked as long as the animation is not over. If the user clicks or preses a key, the animation is stopped and the controls are displayed in their final status.
Universal Windows 10 App This parameter is ignored. No animation can be played when the control is enabled.
Remarks
WINDEVReports and QueriesUser code (UMC)

Animating a group of controls

If <Control name> corresponds to a group of controls, the animation is played in the rectangle defined by the control at the top left and the one at the bottom right.
The controls that do not belong to the group of controls but found in this area will also be animated.

Special cases

  • ControlEnabled has no effect if the control or the group of controls is not grayed out.
  • The State property can also be used to enable controls. This property cannot be used to play an animation during this operation. In WINDEV Mobile, the State and ControlEnabled properties are equivalent.
Component: wd290obj.dll
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help