ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Animation functions
  • Image control: Available parameters and their values
  • Static control: Available parameters and their values
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
AnimationGetParameter (Function)
In french: AnimationLitParamètre
Reads the value of one of the animation parameters defined for an Image or Static control.
AndroidiPhone/iPadMac Catalyst In this version, you can only read the value of the animation parameters defined for an Image control.
Java In this version, you can only read the value of the animation parameters defined for a Static control.
Example
Reports and QueriesWindowsAndroidiPhone/iPadMac CatalystUser code (UMC)
IF AnimationGetParameter(IMG_Image1, acpLoop) = True THEN
AnimationSetParameter(IMG_Image1, acpLoop, False)
END
Reports and QueriesWindowsJavaUser code (UMC)
IF AnimationGetParameter(STC_CustomerNameSta, acpColor) = Transparent THEN
AnimationSetParameter(STC_CustomerNameSta, acpColor, LightYellow)
END
Syntax
Reports and QueriesWindowsAndroidiPhone/iPadMac CatalystUser code (UMC)

Reading the animation parameters of an image (Image control) Hide the details

<Result> = AnimationGetParameter(<Image control> , <Parameter name>)
<Result>: Type of expected parameter
Value of sought parameter.
<Image control>: Control name
Name of the Image control to be used.
<Parameter name>: Constant or character string
Name of parameter to read.
acpDirection (or "Direction")Scroll direction.
"Scrolling" animation only.
These parameters can be combined.
1 (by default): from left to right
2: from right to left
4: from bottom to top
8: from top to bottom
Example of combination:
3 (2+1): left right: progressive enlargement from the center
5 (4+1) from bottom to top and from right to left
AndroidiPhone/iPadMac Catalyst This constant is not available.
acpDirectionAlternate (or "DirectionAlternate")Read the image drawings from the first one to the last one, then from the last one to the first one continuously (this parameter is set to False by default).
acpDuration (or "Duration")Time for displaying each animation drawing in milliseconds (300 ms by default).
acpLoop (or "Loop")Read the image drawings from the first one to the last one continuously (this parameter is set to True by default).
acpNbImageX (or "NumberOfImagesX")Number of drawings found in the width of image file. Depending on the specified number, the image will be automatically divided into as many drawings as necessary (1 by default).
"Image to animate" animation only.
AndroidiPhone/iPadMac Catalyst This constant is not available.
acpNbImageY (or "NumberOfImagesY")Number of drawings found in the height of image file. Depending on the specified number, the image will be automatically divided into as many drawings as necessary (1 by default).
"Image to animate" animation only.
AndroidiPhone/iPadMac Catalyst This constant is not available.
acpNbStep (or "NumberOfSteps")10 by default
"Scrolling" animation only.
AndroidiPhone/iPadMac Catalyst This constant is not available.
acpReverse (or "Reverse")Read the image drawings from the last one (bottom right) to the first one (top left) (this parameter is set to False by default).
Reports and QueriesWindowsJavaUser code (UMC)

Reading the animation parameters of a static text (Static control) Hide the details

<Result> = AnimationGetParameter(<Static control> , <Parameter name>)
<Result>: Type of expected parameter
Value of sought parameter.
<Static control>: Control name
Name of the Static control to be used.
<Parameter name>: Constant or character string
Name of parameter to read.
acpColor (or "Color")Blinking color. This parameter can correspond to a color constant. This color corresponds to Transparent by default.
"Blinking" animation only.
acpDirection (or "Direction")Scroll direction.
"Scrolling" animation only.
These parameters cannot be combined.
1 (by default): from left to right
2: from right to left
4: from bottom to top
8: from top to bottom
acpDuration (or "Duration")Time for displaying each animation element in milliseconds (300 ms by default)
acpNbPixel (or "NumberOfPixels")Number of pixels for each scrolling step.
"Scrolling" animation only.
Remarks
Reports and QueriesWindowsAndroidiPhone/iPadMac CatalystUser code (UMC)

Image control: Available parameters and their values

Two types of animations are available for Image controls:
  • Image to animate (animation performed by WINDEV or WINDEV Mobile),
  • Reports and QueriesWindowsUser code (UMC) Scrolling.
Parameters common to the different animations
LoopRead the image drawings from the first one to the last one continuously (this parameter is set to True by default).
ReverseRead the image drawings from the last one (bottom right) to the first one (top left) (this parameter is set to False by default).
DirectionAlternateRead the image drawings from the first one to the last one, then from the last one to the first one continuously (this parameter is set to False by default).
DurationTime for displaying each animation drawing in milliseconds (300 ms by default).
Parameter specific to the "Image to animate"
NumberOfImagesXNumber of drawings found in the width of image file. Depending on the specified number, the image will be automatically divided into as many drawings as necessary (1 by default).
AndroidiPhone/iPadMac Catalyst This parameter cannot be defined through programming.
NumberOfImagesYNumber of drawings found in the height of image file. Depending on the specified number, the image will be automatically divided into as many drawings as necessary (1 by default).
AndroidiPhone/iPadMac Catalyst This parameter cannot be defined through programming.
Parameter specific to "Scrolling"
DirectionScroll direction. These parameters can be combined.
1 (by default): from left to right
2: from right to left
4: from bottom to top
8: from top to bottom
Example of combination:
3 (2+1): left right: progressive enlargement from the center
5 (4+1) from bottom to top and from right to left
NumberOfSteps10 by default.
Reports and QueriesWindowsJavaUser code (UMC)

Static control: Available parameters and their values

Two types of animations are available for Static controls:
  • Blinking,
  • Scrolling.
Parameters common to the different animations.
DurationTime for displaying each animation drawing in milliseconds (300 ms by default).
Parameter specific to "Blinking"
ColorBlinking color. This parameter can correspond to a color constant.
This color corresponds to Transparent by default.
Parameter specific to "Scrolling"
NumberOfPixelsNumber of pixels for each scrolling step.
DirectionScroll direction. These parameters cannot be combined.
1 (by default): from left to right
2: from right to left
4: from bottom to top
8: from top to bottom.
Component: wd290obj.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help