We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Warning: this page is incomplete, variables may be incorrect and may be changed in the future.
screen_width
screen_height
width
height
top
left
right
${screen_width} - ${width} - ${margin}
bottom
${screen_height} - ${height} - ${margin}
margin
Currently, variables are only apply for Dynamic X and Y, which in format ${variable}. For example
${variable}
"dynamicX": "${screen_width} - ${width} * 2 + ${margin}"
With these given properties:
It will be converted into
"dynamicX": "1280 - 100 * 2 + 4"
Then, the x field (stored in the memory when paste a control json) is being calculated from dynamicX use exp4j.
x
dynamicX
ControlData controlData = ... controlData.x = new ExpressionBuilder(controlData.dynamicX)...;