[Table of Contents] [docx version]
Error! No text of specified style in document.
ST_TextCapsType (Text Cap Types)
This type specifies the cap types of the text.
This simple type's contents are a restriction of the XML Schema token datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
all (Text Caps Enum ( All )) |
Apply all caps on the text. All lower case letters are converted to upper case even though they are stored differently in the backing store. |
none (Text Caps Enum ( None )) |
The reason we cannot implicitly have noCaps be the scenario where capitalization is not specified is because not being specified implies deriving from a particular style and the user might want to override that and make some text not have a capitalization scheme even though the style says otherwise. |
small (Text Caps Enum ( Small )) |
Apply small caps to the text. All letters are converted to lower case. |
Referenced By |
defRPr@cap (§5.1.5.3.2); endParaRPr@cap (§5.1.5.2.3); rPr@cap (§5.1.5.3.9) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_TextCapsType">
<restriction base="xsd:token">
<enumeration value="none"/>
<enumeration value="small"/>
<enumeration value="all"/>
</restriction>
</simpleType>