<ST_DropCap> (Text Frame Drop Cap Location)

This simple type specifies the location which shall be used to position a drop cap text frame when the contents of that text frame are displayed in the anchor paragraph at display time.

Note:
<w:p> 
  <w:pPr>
    <w:framePr w:dropCap="margin" w:lines="3" w:hSpace="432" w:wrap="around" w:vAnchor="text" w:hAnchor="page" /> 
  </w:pPr>
  <w:r>
    <w:t>A</w:t> 
  </w:r>
</w:p>

The @dropCap attribute specifies a value of margin, so this drop cap will be placed outside of the text margin before the start of the current text. ]

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

<drop> (Drop Cap Inside Margin)

Specifies that the drop cap text frame shall be positioned inside the text margin on the anchor paragraph when this text frame is displayed in the document.

<margin> (Drop Cap Outside Margin)

Specifies that the drop cap text frame shall be positioned outside of the text margin on the anchor paragraph when this text frame is displayed in the document.

<none> (Not Drop Cap)

Specifies that this text frame is not a drop cap text frame.

Referenced By

<framePr@dropCap>2.3.1.11)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_DropCap">
	<restriction base="xsd:string">
	<enumeration value="none"/>
	<enumeration value="drop"/>
	<enumeration value="margin"/>
	</restriction>
</simpleType>