1,042
edits
| Line 145: | Line 145: | ||
<br> | <br> | ||
The file structure is described below, with the example of Property 1 as text, Property 2 as unconstrained list and Property 3 as constrained list.<br><br> | The file structure is described below, with the example of Property 1 as text, Property 2 as unconstrained list and Property 3 as constrained list.<br><br> | ||
''NB: NVGate software automatically creates default properties (such as “site”,”installation”,”intervention”). They are hidden if the incoming properties are set to “hidden”).'' | ''NB: NVGate software automatically creates default properties (such as “site”,”installation”,”intervention”). They are hidden if the incoming properties are set to “hidden”).''<br><br> | ||
File header<br> | |||
<libraryUserProperties version="1.0"> | |||
<properties version="1.0"> | |||
Property 1 as type "text"<br> | |||
<property version="1.1"> | |||
<propertyId>user.'''username'''.'''Property1'''</propertyId> | |||
<title>'''Property1'''</title> | |||
<value></value> | |||
<type>text</type> | |||
</property> | |||
Property 2 as type "unconstrained list"<br> | |||
<property version="1.1"> | |||
<propertyId>user.'''username'''.'''Property2'''</propertyId> | |||
<title>'''Property2'''</title> | |||
<value>Value</value> | |||
<type>enumerated</type> | |||
<enumerated version="1.1" flavor="unconstrained"> | |||
<value>'''Value1'''</value> | |||
<value default="true">'''DefaultValue'''</value> | |||
<value>'''Value3'''</value> | |||
</enumerated> | |||
</property> | |||
Property 3 as type "constrained list"<br> | |||
<property version="1.1"> | |||
<propertyId>user.'''username'''.'''Property3'''</propertyId> | |||
<title>'''Property3'''</title> | |||
<value></value> | |||
<type>enumerated</type> | |||
<enumerated version="1.1" flavor="constrained"> | |||
<value>'''Value1'''</value> | |||
<value default="true">'''DefaultValue'''</value> | |||
<value>'''Value3'''</value> | |||
</enumerated> | |||
</property> | |||
File footer<br> | |||
</properties> | |||
</libraryUserProperties> | |||