Create Tab Controls

XML Forms Guide

Version
R2024.1.1
Create Tab Controls

The tab control enables users to organize child elements in tabs.

Child elements of the <TabControl> element
Child Element Link to More Information
<SimpleComment> Create Simple Comment Controls
<RichTextControlWithBinding> Create Rich Text Controls with Binding Fields

Example Use

Copy
<TabControl>
    <Row>n</Row>
    <RichTextControlWithBinding>
        <Caption>lblJobDescription</Caption>
        <BindingProperty>List_JobReq.LongName</BindingProperty>
        <IsReadOnly>False</IsReadOnly>
    </RichTextControlWithBinding>
    <RichTextControlWithBinding>
        <Caption>lblJobQualifications</Caption>
        <BindingProperty>List_JobReq.JobQualifications</BindingProperty>
        <IsReadOnly>False</IsReadOnly>
    </RichTextControlWithBinding>
    <SimpleComment>
        <Caption>lblComment</Caption>
        <BindingProperty>List_JobReq.Comment</BindingProperty>
        <IsReadOnly>False</IsReadOnly>
    </SimpleComment>
</TabControl>