Create Fields

XML Forms Guide

Version
R2025.1.0
Create Fields

You can create fields using the <Field> tag. Within the <Field> tag, you identify the data source using the <BindingProperty> tag. The form displays the appropriate field type based on the data type of the class identified by the <BindingProperty> tag. For example, if the data type is binary, the form displays a checkbox.

For each field, you use the <Style> tag to control its appearance.

Example Use

Copy
<Field>
    <Style>IVTextBoxDouble</Style>
    <Block>n</Block>
    <Row>n</Row>
    <Column>n</Column>
    <BindingProperty>data_class</BindingProperty>
</Field>