Object height
- Last UpdatedJul 26, 2024
- 1 minute read
The following elements can be specified for an object height animation link. An object height animation link cannot be used with an orientation animation link.
|
Elements |
Description |
|---|---|
|
Title |
Object name. Optional. |
|
SizeAnchor |
Defines where on the object the anchor is located. Values can be bottom, middle, top. Default is bottom. |
|
SizeMin |
Value at minimum height. Default is 0. |
|
SizeMax |
Value at maximum height. Default is 100. Must be greater than the value assigned to the SizeMin element. |
|
MinPercent |
Minimum percentage height. Default is 0. Range is from 0 to 100. |
|
MaxPercent |
Maximum percentage height. Default is 100. Must be more than minimum percent. Range is from 0 to 100. |
|
Expression |
Analog tag name or expression. Required. Object is not created if the expression is invalid or missing. |
Example:
<ObjectSizeHeight>
<Title>ObjectSizeHeight1</Title>
<Expression> <![CDATA[aTag001]]> </Expression>
<SizeMin>0.0</SizeMin>
<SizeMax>100.0</SizeMax>
<MinPercent>0.0</MinPercent>
<MaxPercent>100.0</MaxPercent>
<SizeAnchor>Top</SizeAnchor>
</ObjectSizeHeight>
Minimal example:
<ObjectSizeHeight>
<Expression>aTag001</Expression>
</ObjectSizeHeight>