sqf:positionType

Simple Type Information

Used By

Attribute sqf:add/@position

Source

<xs:simpleType name="positionType">
  <xs:restriction base="xs:string">
    <xs:enumeration value="after">
      <xs:annotation>
        <xs:documentation>The nodes to be added will be inserted after the anchor node.</xs:documentation>
      </xs:annotation>
    </xs:enumeration>
    <xs:enumeration value="before">
      <xs:annotation>
        <xs:documentation>The nodes to be added will be inserted before the anchor node.</xs:documentation>
      </xs:annotation>
    </xs:enumeration>
    <xs:enumeration value="first-child">
      <xs:annotation>
        <xs:documentation>The nodes to be added will be inserted as the first child of the anchor node.</xs:documentation>
      </xs:annotation>
    </xs:enumeration>
    <xs:enumeration value="last-child">
      <xs:annotation>
        <xs:documentation>The nodes to be added will be inserted as the last child of the anchor node.</xs:documentation>
      </xs:annotation>
    </xs:enumeration>
  </xs:restriction>
</xs:simpleType>