exist: the data existsnotExist: the data does not existequals: the data is equal with a specified valuenotEquals: the data is not equal with a specified valuegreater: the data is greater than a specified valueless: the data is less than a specified valuegreaterOrEqual: the data is greater or equal than a specified valuelessOrEqual: the data is less or equal than a specified valuebetween: the data is between two valuesconditions element has one optional attribute:exist condition is a condition which is true if the data exist.<exist name="myData" />
notExist condition is a condition which is true if the data does not exist.<notExist name="myData" />
equals condition is a condition which is true if the data exist and is equals to a specified value. This element can have two optional attributes:<equals name="myData" value="10.2" delta="0.2" type="float"/> <equals name="myData2" value="true" type="boolean"/> <equals name="$waypointID" value="WP10"/>
notEquals condition is a condition which is true if the data exist and is not equals to a specified value. This element can have one optional attribute:<notEquals name="myData" value="10.2" type="float" delta="0.2" /> <notEquals name="myData2" value="true" type="boolean"/> <notEquals name="$waypointID" value="WP10"/>
greater condition is a condition which is true if the data exist and is strictly greater than a specified value. This element can have one optional attribute:<greater name="myData" value="10.2" type="float" /> <greater name="$latitude" value="1.23"/>
less condition is a condition which is true if the data exist and is strictly less than a specified value. This element can have one optional attribute:<less name="myData" value="10.2" type="float" /> <less name="$latitude" value="1.23"/>
greaterOrEqual condition is a condition which is true if the data exist and is greater or equal than a specified value. This element can have one optional attribute:<greaterOrEqual name="myData" value="10.2" type="float" /> <greaterOrEqual name="$latitude" value="1.23"/>
lessOrEqual condition is a condition which is true if the data exist and is less or equal than a specified value. This element can have one optional attribute:<lessOrEqual name="myData" value="10.2" type="float" /> <lessOrEqual name="$latitude" value="1.23"/>
between condition is a condition which is true if the data exist and is between two specified values.<between name="myData" min="8" max="12" /> <lessOrEqual name="$latitude" min="1.1" max="1.32"/>
Copyright 2017-2020 Dassault Aviation. All Rights Reserved. Documentation and source under the LGPL v3 licence