Overview
Expressions may be inserted into any binding that accepts a string of text.
For more info, see: PRIME Parameters, Expressions, and Conditions |
Expression samples:
Set X position of one object to another: | ||
Type | Expression | Bindings |
Double | Image1.PositionX | Text1.PositionX |
Set X position of one object to another plus an offset: | ||
Type | Expression | Bindings |
Double | Image1.PositionX + 100 | Text1.PositionX |
Set opacity of one object to another times a scale value: | ||
Type | Expression | Bindings |
Double | Image1.Opacity * .5 | Text1.Opacity |
Set file of one object to the modified text of another: | ||
Type | Expression | Bindings |
String |
"I:\Graphics\" + Text1.Text + ".png" |
Image1.File |