Specifies a yes or no value.
xsd:NMTOKEN
Name | Description |
---|---|
enumeration | yes |
enumeration | no |
The xdYesNo type is used for attributes in the form definition (.xsf) file that require a yes or no value.
The following example is the declaration of the xdYesNo type:
<xsd:simpleType name="xdYesNo">
<xsd:restriction base="xsd:NMTOKEN">
<xsd:enumeration value="yes" />
<xsd:enumeration value="no" />
</xsd:restriction>
</xsd:simpleType>