Vertical location
- Last UpdatedJul 26, 2024
- 1 minute read
The following elements can be specified for a vertical location animation link. An object vertical location animation link cannot be used with an orientation animation link.
|
Elements |
Description |
|---|---|
|
Title |
Object name. Optional. |
|
MinValue |
Value at top. Default is 0. Cannot be the same value as at bottom. |
|
MaxValue |
Value at bottom. Default is 100. Cannot be same value as at top. |
|
DecreaseMovement |
Vertical movement upward. Default is 0. Cannot be less than 0. |
|
IncreaseMovement |
Vertical movement downward. Default is 100. Cannot be greater than 100. |
|
Expression |
Analog tag or expression. Required. Object is not created if the expression is invalid or missing. |
Example:
<LocationVertical>
<Title>LocationVertical1</Title>
<Expression>
<![CDATA[aTag001]]>
</Expression>
<MinValue>0.0</MinValue>
<MaxValue>100.0</MaxValue>
<DecreaseMovement>0</DecreaseMovement>
<IncreaseMovement>100</IncreaseMovement>
</LocationVertical>
Minimal example:
<LocationVertical>
<Expression>aTag001</Expression>
</LocationVertical>