Skip to content

Label

Label displays text; it does not write a value to the form data. Configure its content in the Content element. The content may be static text or a template such as {{Customer/Name}}, which can display a value from the form or the current row without adding an input field.

Content Behavior

Template values are formatted with the form's culture. Static text is resolved through the active language dictionary, so use a localization entry when the same label must be translated. A normal label renders text, not HTML: markup in Content is displayed literally. The only special output is the [time .../] form, which is rendered as a time element for time-aware display.

An empty label displays the standard empty-value placeholder while the form is running. In the form designer, select a Label and double-click its text to edit Content directly.

Style

Use Style to select the Label's presentation style. Leave it empty to use the default appearance.

Example

1
2
3
<Label Style="Section">
    <Content><![CDATA[Request for {{Customer/Name}}]]></Content>
</Label>