Specifies a view name.
xsd:string| Name | Description | 
|---|---|
| minLength | 1 | 
| maxLength | 255 | 
| pattern | ([^\p{Z}\p{C}/\\#&"><])(([^\p{Zl}\p{Zp}\p{C}/\\#&"><])*([^\p{Z}\p{C}/\\#&"><]))? | 
The xdViewName 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.
The following example is the declaration of the xdViewName type:
<xsd:simpleType name="xdViewName">
   <xsd:restriction base="xsd:string">
      <xsd:minLength value="1" />
      <xsd:maxLength value="255" />
      <xsd:pattern value="([^\p{Z}\p{C}/\\#&"><])
         (([^\p{Zl}\p{Zp}\p{C}/\\#&"><])*([^\p{Z}
         \p{C}/\\#&"><]))?" />
   </xsd:restriction>
</xsd:simpleType>