<object>
(Inline Embedded Object)
This element specifies that an embedded object is located at this position in the run’s contents. The layout properties of this embedded object are specified using the VML syntax (§6.1).
<w:r> <w:object> … </w:object> </w:r>
The <object>
element indicates that an embedded object and its VML positioning data are located at the current position in the run (e.g. an embedded object). ]
Child Elements |
Subclause |
---|---|
Any element from the urn:schemas-microsoft-com:vml namespace |
§6.1 |
Any element from the urn:schemas-microsoft-com:office:office namespace |
§6.2 |
|
Attributes |
Description |
---|---|
|
Specifies the original (natural) width of the image representation of the current control within the document. Some vector image formats do not store a native size within their format, and this attribute shall only be used in those cases to store this information, so that the image may be appropriately restored as needed. If this element is excluded, then the natural size of the image as stored in its format shall be used. <w:object w:dxaOrig="3360" w:dyaOrig="2520"> … <v:shape … style="width:168pt;height:4in"> … </v:shape> <o:OLEObject … /> </w:object> The The possible values for this attribute are defined by the ST_TwipsMeasure simple type (§2.18.105). |
|
Specifies the original (natural) height of the image representation of the current control within the document. Some vector image formats do not store a native size within their format, and this attribute shall only be used in those cases to store this information, so that the image may be appropriately restored as needed. If this element is excluded, then the natural size of the image as stored in its format shall be used. <w:object w:dxaOrig="3360" w:dyaOrig="2520"> … <v:shape … style="width:168pt;height:4in"> … </v:shape> <o:OLEObject … /> </w:object> The The possible values for this attribute are defined by the ST_TwipsMeasure simple type (§2.18.105). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_Object">
<complexContent>
<extension base="CT_PictureBase">
<sequence>
<element name="control" type="CT_Control" minOccurs="0"/>
</sequence>
<attribute name="dxaOrig" type="ST_TwipsMeasure" use="optional"/>
<attribute name="dyaOrig" type="ST_TwipsMeasure" use="optional"/>
</extension>
</complexContent>
</complexType>