Purpose |
This is an element in the logical subtree of
Notes:
|
Parent element | tsd:computed ,
tsd:logical |
Child elements | tsd:language ,
tsd:strength ,tsd:caseFirst ,
tsd:alternate ,tsd:caseLevel ,
tsd:french ,tsd:normalization |
Attributes | None |
Type | xs:complexType |
The following example demonstrates the use of the
tsd:collation
element. It presets the child elements of the
tsd:collation
element with reasonable values:
<xs:element name = "address"> <xs:annotation> <xs:appinfo> <tsd:elementInfo> <tsd:logical> <tsd:collation> <tsd:language value="de"/> <tsd:strength value="primary"/> <tsd:caseFirst value = "upperFirst"/> <tsd:alternate value = "shifted"/> <tsd:caseLevel value = "false"/> <tsd:french value = "false"/> <tsd:normalization value ="false"/> </tsd:collation> </tsd:logical> <tsd:physical> <tsd:native> <tsd:index> <tsd:standard/> </tsd:index> </tsd:native> </tsd:physical> </tsd:elementInfo> </xs:appinfo> </xs:annotation> . . . </xs:element>