<ST_Jc>
(Horizontal Alignment Type)
This simple type specifies all types of alignment which are available to be applied to objects in a WordprocessingML document.
<w:pPr> <w:jc w:val="right" /> </w:pPr>
The @val
attribute's value of right
specifies that the content shall be right aligned on the page. ]
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 |
---|---|
|
Specifies that the text shall be justified between both of the text margins in the document. The This type of justification shall only affect the inter-word spacing on each line, and not the inter-character spacing between each word when justifying its contents. |
|
Specifies that the text shall be centered on the line between both of the text margins in the document. |
|
Specifies that the text shall be justified between both of the text margins in the document. This type of justification shall equally affect the inter-word spacing on each line as well as the inter-character spacing between each word when justifying its contents - that is, an equal amount of additional character pitch shall be added to all characters on the line. |
|
Specifies that the kashida length for text in the current paragraph shall be extended to its widest possible length. This setting only affects kashidas, which are special characters used to extend the joiner between two Arabic characters. [: They are typically used to improve the appearance of justified text by visually lengthening words rather than increasing the spacing between words. ] |
|
Specifies that the text shall be aligned on the left text margin in the document. |
|
Specifies that the kashida length for text in the current paragraph shall be extended to a slightly longer length. This setting shall also be applied to Arabic text when the This setting only affects kashidas, which are special characters used to extend the joiner between two Arabic characters. [: They are typically used to improve the appearance of justified text by visually lengthening words rather than increasing the spacing between words. ] |
|
Specifies that the kashida length for text in the current paragraph shall be extended to a medium length determined by the consumer. This setting only affects kashidas, which are special characters used to extend the joiner between two Arabic characters. [: They are typically used to improve the appearance of justified text by visually lengthening words rather than increasing the spacing between words. ] |
|
Specifies that the text shall be aligned to the list tab, which is the tab stop after the numbering for the current paragraph. If the current paragraph has no numbering, this setting has no effect. Note:
|
|
Specifies that the text shall be aligned on the right text margin in the document. |
|
Specifies that the text shall be justified with an optimization for Thai. This type of justification shall affect both the inter-word spacing on each line, and the inter-character spacing between each word when justifying its contents, unlike Note:
|
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_Jc">
<restriction base="xsd:string">
<enumeration value="left"/>
<enumeration value="center"/>
<enumeration value="right"/>
<enumeration value="both"/>
<enumeration value="mediumKashida"/>
<enumeration value="distribute"/>
<enumeration value="numTab"/>
<enumeration value="highKashida"/>
<enumeration value="lowKashida"/>
<enumeration value="thaiDistribute"/>
</restriction>
</simpleType>