Show AllShow All

xdTitle Type

Specifies a title string.

Type

xsd:string

Facets

NameDescription
minLength1
maxLength255
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>
©2003-2004 Microsoft Corporation. All rights reserved. Permission to copy, display and distribute this document is available at: http://msdn.microsoft.com/library/en-us/odcXMLRef/html/odcXMLRefLegalNotice.asp