[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
ST_CalendarType (Calendar Types)
This simple type specifies the possible types of calendars which may be used within the context of a WordprocessingML document.
[Example: Consider the following structured document tag properties:
<w:sdtPr>
<w:date w:fullDate="01-01-2006T06:30:00Z">
<w:calendar w:val="gregorian"/>
</w:date>
</w:sdtPr>
The calendar element specifies that the calendar type for a calendar which may be displayed in the document shall be the Gregorian calendar format (gregorian). end example]
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
gregorian (Gregorian) |
Specifies that the Gregorian calendar shall be used. This calendar may be localized into the appropriate language as desired. |
gregorianXlitEnglish (Gregorian transliterated English) |
Specifies that the Gregorian transliterated English calendar shall be used. |
gregorianXlitFrench (Gregorian transliterated French) |
Specifies that the Gregorian transliterated French calendar shall be used. |
hebrew (Hebrew) |
Specifies that the Hebrew lunar calendar shall be used. |
hijri (Hijri) |
Specifies that the Hijri lunar calendar shall be used. |
japan (Japanese Emperor Era) |
Specifies that the Japanese Emperor Era calendar shall be used. |
korea (Korean Tangun Era) |
Specifies that the Korean Tangun Era calendar shall be used. |
saka (Saka Era) |
Specifies that the Saka Era calendar shall be used. |
taiwan (Taiwan) |
Specifies that the Taiwanese calendar shall be used. |
thai (Thai) |
Specifies that the Thai calendar shall be used. |
Referenced By |
calendar@val (§2.5.2.3) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_CalendarType">
<restriction base="xsd:string">
<enumeration value="gregorian"/>
<enumeration value="hijri"/>
<enumeration value="hebrew"/>
<enumeration value="taiwan"/>
<enumeration value="japan"/>
<enumeration value="thai"/>
<enumeration value="korea"/>
<enumeration value="saka"/>
<enumeration value="gregorianXlitEnglish"/>
<enumeration value="gregorianXlitFrench"/>
</restriction>
</simpleType>