Template:Variable

From FreeCAD Documentation

{{{1}}}


Use this template where you want to show a value or parameter.

Example:

{{Variable|MyAttribute}}: some variable.

Result:

MyAttribute: some variable.


The second argument is optional, to specify a type to be shown before the variable.

Example:

{{Variable|MyAttribute|Type}}: some variable.

Result:

TypeMyAttribute: some variable.


The third argument is optional, to specify a second type to be shown after the variable.

{{Variable|MyAttribute|Type|Type2}}: some variable.

Result:

TypeMyAttribute (Type2): some variable.


The fourth argument is optional, to specify a modifier to the first type.

{{Variable|MyAttribute|Type|Type2|Mod1}}: some variable.
{{Variable|MyAttribute|Type||Mod1}}: some variable.

Result:

Type (Mod1)MyAttribute (Type2): some variable.

Type (Mod1)MyAttribute: some variable.