<context name="myLayer" layerID="56" appliID="1" />
aInt
data is an int variable for which the value is: a*10
, with a
being another data.<preInput name="aInt" type="int" equ="a*10" > <data name="a" type="int" /> </preInput>
A661_POS_X
property for the widget 55 in the "myLayer" Layer will have the following value: aInt + b + 1000
, with aInt
and b
being two datas.<input context="myLayer" widgetID="55" paramID="A661_POS_X" equ="aInt + b + 1000"> <data name="aInt" type="int" /> <data name="b" type="int" /> </input>
<dataProvider stateful="true"> <context name="myLayer" layerID="56" appliID="1" /> <pre> <preInput name="aInt" type="int" equ="a*10" > <data name="a" type="int" /> </preInput> </pre> <input context="myLayer" widgetID="55" paramID="A661_POS_X" equ="aInt + b + 1000"> <data name="aInt" type="int" /> <data name="b" type="int" /> </input> <input context="myLayer" widgetID="55" paramID="A661_STRING" equ="$1"> <data name="c" type="string" /> </input> </dataProvider>
aInt = a + 10 = 10
A661_POS_X = aInt + b + 1000 = 1010
A661_STRING = c = ""
aInt = a + 10 = 20
A661_POS_X = aInt + b + 1000 = 1020
Copyright 2016-2017 Dassault Aviation. All Rights Reserved. Documentation and source under the LGPL v2 licence