2.16.8 Textbox.DataElementOutput
The Textbox.DataElementOutput element specifies whether a Textbox appears in a data (XML, CSV) rendering. This element is optional. If this element is present, its value MUST be a String ([XMLSCHEMA2/2] section 3.2.1). If this element is not present, its value is interpreted as "Auto". The value of this element MUST be one of the following:
Auto: Specifies the default setting for how the text box will appear in a data rendering, which MUST be the same as "NoOutput" if Visibility.Hidden for the text box is set to true and Visibility.ToggleItem is not set. Otherwise, this value is interpreted as "Output".
Output: Specifies that the text box appears in a data rendering output.
NoOutput: Specifies that the text box does not appear in a data rendering output.
Following is the parent element of the Textbox.DataElementOutput element.
Parent elements |
---|
Textbox |
The following is the XML Schema definition of the Textbox.DataElementOutput element.
-
<xsd:element name="DataElementOutput" minOccurs="0" "> <xsd:simpleType> <xsd:restriction base="xsd:string"> <xsd:enumeration value="Output" /> <xsd:enumeration value="NoOutput" /> <xsd:enumeration value="ContentsOnly" /> <xsd:enumeration value="Auto" /> </xsd:restriction> </xsd:simpleType> </xsd:element>