docx
    Preparing search index...

    Variable VerticalPositionRelativeFromConst

    VerticalPositionRelativeFrom: {
        BOTTOM_MARGIN: "bottomMargin";
        INSIDE_MARGIN: "insideMargin";
        LINE: "line";
        MARGIN: "margin";
        OUTSIDE_MARGIN: "outsideMargin";
        PAGE: "page";
        PARAGRAPH: "paragraph";
        TOP_MARGIN: "topMargin";
    } = ...

    Vertical Relative Positioning.

    Specifies the vertical base from which the drawing position is calculated.

    Reference: https://www.datypic.com/sc/ooxml/t-wp_ST_RelFromV.html

    <xsd:simpleType name="ST_RelFromV">
    <xsd:restriction base="xsd:token">
    <xsd:enumeration value="margin"/>
    <xsd:enumeration value="page"/>
    <xsd:enumeration value="paragraph"/>
    <xsd:enumeration value="line"/>
    <xsd:enumeration value="topMargin"/>
    <xsd:enumeration value="bottomMargin"/>
    <xsd:enumeration value="insideMargin"/>
    <xsd:enumeration value="outsideMargin"/>
    </xsd:restriction>
    </xsd:simpleType>

    Type declaration

    • ReadonlyBOTTOM_MARGIN: "bottomMargin"

      Specifies that the vertical positioning shall be relative to the bottom margin of the current page.

    • ReadonlyINSIDE_MARGIN: "insideMargin"

      Specifies that the vertical positioning shall be relative to the inside margin of the current page.

    • ReadonlyLINE: "line"

      Specifies that the vertical positioning shall be relative to the line containing the anchor character.

    • ReadonlyMARGIN: "margin"

      Specifies that the vertical positioning shall be relative to the page margins.

    • ReadonlyOUTSIDE_MARGIN: "outsideMargin"

      Specifies that the vertical positioning shall be relative to the outside margin of the current page.

    • ReadonlyPAGE: "page"

      Specifies that the vertical positioning shall be relative to the edge of the page.

    • ReadonlyPARAGRAPH: "paragraph"

      Specifies that the vertical positioning shall be relative to the paragraph which contains the drawing anchor.

    • ReadonlyTOP_MARGIN: "topMargin"

      Specifies that the vertical positioning shall be relative to the top margin of the current page.