STAAD.Pro Physical Modeler Help

XML Basics

This document describes the syntax to create a XML Template file, that could be used as an input for the Structural Template Wizard.

Note: It is recommended that you use an XML-aware editor when creating and editing XML files. Microsoft's Visual Studio Code with the XML Language Support extension from Red Hat is a free and easy-to-use example.

Reserved Markup Characters

Some special characters are not allowed in XML code (known as reserved markup characters). In order to utilize these in attribute or element values, you must utilize the following character escape sequences:

Name Symbol Escape Sequence
Double quote " " or "
Single quote (apostrophe) ' ' or '
Lesser than < &lt; or &#60;
Greater than > &gt; or &#62;
Ampersand & &amp; or &#38;

For example, to write a condition "A < 5", you need to use:

<If Condition="a&lt;5" />