Vertical slider
- Last UpdatedJul 26, 2024
- 1 minute read
You can specify the following elements for a vertical slider animation link.
|
Elements |
Description |
|---|---|
|
Title |
Object name. Optional. |
|
ReferenceLocation |
Vertical reference: top, middle, bottom. Default is bottom. |
|
TopValue |
Top value. Cannot be the same as BottomValue. Default is 0. |
|
BottomValue |
Bottom value. Default is 100. |
|
UpwardMovement |
Upward movement. Must range from 0 to 32767. Out of range values are clamped and an error message is logged. Default is 50. |
|
DownwardMovement |
Downward movement. Must range from 0 to 32767. Out of range values are clamped and an error message is logged. Default is 50. |
|
Expression |
Analog tag or expression. Required. Object is not created if the expression is invalid or missing. |
Example:
<SliderVertical>
<Title>SliderVertical1</Title>
<ReferenceLocation>Bottom</ReferenceLocation>
<TopValue>10.0</TopValue>
<BottomValue> 110.0</BottomValue>
<UpwardMovement> 20.0</UpwardMovement>
<DownwardMovement> 120.0</DownwardMovement>
<Expression> <![CDATA[aTag001]]> </Expression>
</SliderVertical>
Minimal example:
<SliderVertical>
<Expression>aTag001</Expression>
</SliderVertical>