<ST_RelFromV>
(Vertical Relative Positioning)
This simple type specifies the possible values for the base from which the relative vertical positioning of an object shall be calculated.
<wp:anchor … > <wp:positionV relativeFrom="page"> <wp:align>bottom</wp:align> </wp:positionV> … </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 vertical positioning shall be relative to the bottom margin of the current page. |
|
Specifies that the vertical positioning shall be relative to the inside margin of the current page. |
|
Specifies that the vertical positioning shall be relative to the line containing the anchor character. |
|
Specifies that the vertical positioning shall be relative to the page margins. |
|
Specifies that the vertical positioning shall be relative to the outside margin of the current page. |
|
Specifies that the vertical positioning shall be relative to the edge of the page. |
|
Specifies that the vertical positioning shall be relative to the paragraph which contains the drawing anchor. |
|
Specifies that the vertical positioning shall be relative to the top margin of the current page. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_RelFromV">
<restriction base="xsd:token">
<enumeration value="margin"/>
<enumeration value="page"/>
<enumeration value="paragraph"/>
<enumeration value="line"/>
<enumeration value="topMargin"/>
<enumeration value="bottomMargin"/>
<enumeration value="insideMargin"/>
<enumeration value="outsideMargin"/>
</restriction>
</simpleType>