Vertical percent fill
- Last UpdatedJul 26, 2024
- 1 minute read
The following elements can be specified for a vertical percent fill animation link. A vertical percent fill animation link cannot be used with an orientation animation link.
|
Elements |
Description |
|---|---|
|
Title |
Object name. Optional. |
|
FillDirection |
Defines the direction of motion. Possible values are: {Up, down}. Default is up. Required. |
|
FillColor |
Solid fill color element. Default is rgb(0, 0, 0). |
|
FillMin |
Defines minimum value. Default is 0. |
|
FillMax |
Defines maximum value. Default is 100. Must be more than the minimum fill. |
|
FillMinPercent |
Defines minimum value as a percentage. Default is 0. Range from 0 to 100. |
|
FillMaxPercent |
Defines maximum value as a percentage. Default is 100. Range from 0 to 100. Must be more than the minimum percentage. |
|
Expression |
Analog tag or expression. Required. |
Example:
<PercentFillVertical>
<Title>PercentFillVertical1</Title>
<Expression><![CDATA[aTag001]]></Expression>
<FillMin>0.0</FillMin>
<FillMax>100.0</FillMax>
<FillMinPercent>0</FillMinPercent>
<FillMaxPercent>100</FillMaxPercent>
<FillColor><Name>Purple</Name></FillColor>
<FillDirection>Up</FillDirection>
</PercentFillVertical>
Minimal example:
<PercentFillVertical>
<Expression>aTag001</Expression>
<FillDirection>Up</FillDirection>
</PercentFillVertical>