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