xdTitle Type

Specifies a title string.

Type

  xsd:string

Facets

Name Description
minLength 1
maxLength 255
pattern ([^\p{Z}\p{Cc}\p{Cf}\p{Cn}])(([^\p{Zl}\p{Zp}\p{Cc}])*([^\p{Z}\p{Cc}\p{Cf}\p{Cn}]))?

Remarks

The xdTitle type is used for attributes in the form definition (.xsf) file that are a string of characters that can be from 1 to 255 characters in length, and that follow a prescribed pattern.

Example

The following example is the declaration of the xdTitle type:

  <xsd:simpleType name="xdTitle">
   <xsd:restriction base="xsd:string">
      <xsd:minLength value="1" />
      <xsd:maxLength value="255" />
      <xsd:pattern value="([^\p{Z}\p{Cc}\p{Cf}\p{Cn}])
         (([^\p{Zl}\p{Zp}\p{Cc}])*([^\p{Z}\p{Cc}\p{Cf}\p{Cn}]))?" />
   </xsd:restriction>
</xsd:simpleType>