<xs:attributeGroup name="SizeImp">
<xs:attribute name="width" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>The attribute width allows to specify the width of an image, multimedia object, table, etc. as a positive Number.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="height" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>The attribute height allows to specify the height of an image, multimedia object, table, etc. as a positive Number.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="units">
<xs:annotation>
<xs:documentation>The attribute units allows the values pixels or percent. It is used to specify what the units of the numbers specified in the attributes width and height are.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="pixels"/>
<xs:enumeration value="percent"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup> |