property
element has the following attributes:name
: the property nametype
: the property type, which can have the following values: string, int, float, booleanstring
.
<propertyTypes> <propertyType name="video" type="int" /> </propertyTypes>We declare that the
video
property is an int.
<arrayType name="propertyArray" type="property" /> <structType name="property"> <field name="name" type="string" /> <field name="value" type="any" /> </structType>The type of a property will be the type defined for the property name in the custom properties types declaration. If this property has no defined type, it will be a string.
<configuration> <propertyTypes> <propertyType name="video" type="int" /> </propertyTypes> <targets> <target name="SA_12_Bill_Board_47" type="bill board"> <point latitude="44.913" longitude="4.965"/> <property name="video" value="47" /> </target> </targets> </configuration>
Copyright 2017-2020 Dassault Aviation. All Rights Reserved. Documentation and source under the LGPL v3 licence