2.3.20 ST_enmBorderPosition

Referenced by: CT_Border

Specifies the position to which border information is applied.

The following table shows the enumeration values for this type.

Value

Meaning

None

Border position undefined. MUST NOT be used.

Left

Border information for left edge. In sheets with a right-to-left reading order this position corresponds to the right-most side of the element on the screen.

Right

Border information for right edge. In sheets with a right-to-left reading order this position corresponds to the left-most side of the element on the screen.

Top

Border information for top edge.

Bottom

Border information for bottom edge.

The following W3C XML Schema ([XMLSCHEMA1] section 2.1) fragment specifies the contents of this simple type.

 <xs:simpleType name="ST_enmBorderPosition">
   <xs:restriction base="xs:string">
     <xs:enumeration value="None"/>
     <xs:enumeration value="Left"/>
     <xs:enumeration value="Right"/>
     <xs:enumeration value="Top"/>
     <xs:enumeration value="Bottom"/>
   </xs:restriction>
 </xs:simpleType>

See section 5.1 for the full W3C XML Schema ([XMLSCHEMA1] section 2.1).