Specifies how the property's labels are displayed. There should be only one labelInfo element for each propertyDescription element.
If there are multiple elements, the last one is used. If no labelInfo element is provided, then the property's label is not displayed; however, this would typically be a defect.
<!-- labelInfo --> <xs:element name="labelInfo"> <xs:complexType> <xs:attribute name="label" type="xs:string"/> <xs:attribute name="sortDescription"> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="General"/> <xs:enumeration value="AToZ"/> <xs:enumeration value="LowestHighest"/> <xs:enumeration value="OldestNewest"/> <xs:enumeration value="SmallestLargest"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="invitationText" type="xs:string"/> <xs:attribute name="hideLabel" type="xs:boolean" default="false"/> </xs:complexType> </xs:element>