<ST_RelFromH>
(Horizontal Relative Positioning)
This simple type specifies the possible values for the base from which the relative horizontal positioning of an object shall be calculated.
<wp:anchor … > <wp:positionH relativeFrom="page"> <wp:align>center</wp:align> </wp:positionH> … </wp:anchor>
The @relativeFrom
attribute specifies that the object is horizontally positioned relative to the page
. ]
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 |
---|---|
|
Specifies that the horizontal positioning shall be relative to the position of the anchor within its run content. |
|
Specifies that the horizontal positioning shall be relative to the extents of the column which contains its anchor. |
|
Specifies that the horizontal positioning shall be relative to the inside margin of the current page (the left margin on odd pages, right on even pages). |
|
Specifies that the horizontal positioning shall be relative to the left margin of the page. |
|
Specifies that the horizontal positioning shall be relative to the page margins. |
|
Specifies that the horizontal positioning shall be relative to the outside margin of the current page (the right margin on odd pages, left on even pages). |
|
Specifies that the horizontal positioning shall be relative to the edge of the page. |
|
Specifies that the horizontal positioning shall be relative to the right margin of the page. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_RelFromH">
<restriction base="xsd:token">
<enumeration value="margin"/>
<enumeration value="page"/>
<enumeration value="column"/>
<enumeration value="character"/>
<enumeration value="leftMargin"/>
<enumeration value="rightMargin"/>
<enumeration value="insideMargin"/>
<enumeration value="outsideMargin"/>
</restriction>
</simpleType>