Object width
- Last UpdatedJul 26, 2024
- 1 minute read
The following elements can be specified for an object size width animation link. An object width 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: {Left, center, right}. Default is left. |
|
SizeMin |
Value at minimum width. Default is 0. |
|
SizeMax |
Value at maximum width. Default is 100. Must be larger than SizeMin. |
|
MinPercent |
Minimum percentage width. Default is 0. Range is from 0 to 100. |
|
MaxPercent |
Maximum percentage width. Default is 100. Must be more than MinPercent. Range is from 0 to 100. |
|
Expression |
Analog tag or expression. Required. Object is not created if the expression is invalid or missing. |
Example:
< ObjectSizeWidth>
<Title>ObjectSizeWidth1</Title>
<Expression> <![CDATA[aTag001]]> </Expression>
<SizeMin>0.0</SizeMin>
<SizeMax>100.0</SizeMax>
<MinPercent>0.0</MinPercent>
<MaxPercent>100.0</MaxPercent>
<SizeAnchor>Center</SizeAnchor>
</ObjectSizeWidth>
Minimal example:
<ObjectSizeWidth>
<Expression>aTag001</Expression>
</ObjectSizeWidth>