|
|
|
|
|
- Image field: Available parameters and their values
- Static Text control: available parameters and their values
AnimationGetParameter (Function) In french: AnimationLitParamètre Reads the value of one of the animation parameters defined for an Image or Static Text control. New in version 2025IF AnimationGetParameter(STC_CustomerNameSta, acpColor) = Transparent THEN
AnimationSetParameter(STC_CustomerNameSta, acpColor, LightYellow)
END
Syntax
Reading the animation parameters of a static text (Static Text control) Hide the details
<Result> = AnimationGetParameter(<Static Text control> , <Parameter name>)
<Result>: Type of expected parameter Value of sought parameter. <Static Text control>: Control name Name of the Static Text 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 (default): left to right 2: right to left 4: from bottom to top 8: top to bottom | acpDuration (or "Duration") | Time for displaying each animation element in milliseconds (300 ms by default) | New in version 2025acpLoop (or "Loop") | Continuous Dequeue (this setting is True by default). "Scrolling" animation only. Note: This feature is only available from version 2025 Update 1. | New in version 2025acpNbLoopMax (or "NombreBoucleMax") | Number of loops for continuous dequeue (0 unlimited number of loops). "Scrolling" animation only. Note: This feature is only available from version 2025 Update 1. | acpNbPixel (or "NumberOfPixels") | Number of pixels for each scrolling step. "Scrolling" animation only. |
Remarks Static Text control: available parameters and their values Two types of animations are available for Static Text controls: | | Parameters common to the different animations. | Duration | Amount of time for displaying each drawing of the animation in milliseconds (300 ms by default). | Parameter specific to "Blinking" | Color | Blinking color. This parameter can correspond to a color constant. This color corresponds to Transparent by default. | Settings specific to "Scrolling" | New in version 2025Loop | Continuous Dequeue (this parameter corresponds to True by default). Note: This feature is only available from version 2025 Update 1.
| New in version 2025MaxLoopCount | Number of scroll loops to perform (0 for unlimited scrolling number. Note: This feature is only available from version 2025 Update 1.
| NumberOfPixels | Number of pixels for each scrolling step. | Direction | Scroll direction. These parameters cannot be combined. 1 (default): left to right 2: right to left 4: from bottom to top 8: from top to bottom. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|