<inline>
(Inline DrawingML Object)
This element specifies that the DrawingML object located at this position in the document is an inline object. Within a WordprocessingML document, drawing objects can exist in two states:
Inline - The drawing object is in line with the text, and affects the line height and layout of its line (like a character glyph of similar size).
Floating - The drawing object is anchored within the text, but may be absolutely positioned in the document relative to the page.
When this element encapsulates the DrawingML object's information, then all child elements shall dictate the positioning of this object in line with text.
<w:p> <w:r> <w:drawing> <wp:inline> … </wp:inline> </w:drawing> </w:r> </w:p>
The <inline>
element, when present as the child element of the <drawing>
element, specifies that this DrawingML object shall be positioned in line with the text of this paragraph, modifying line heights, etc. as necessary. ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
Attributes |
Description |
---|---|
|
Specifies the minimum distance which shall be maintained between the bottom edge of this drawing object and any subsequent text within the document when this graphical object is displayed within the document's contents. The distance shall be measured in EMUs (English Metric Units). If this object is an inline object (i.e. has a parent element of <wp:anchor distB="457200" … > … </wp:anchor> The The possible values for this attribute are defined by the ST_WrapDistance simple type (§5.5.3.6). |
|
Specifies the minimum distance which shall be maintained between the left edge of this drawing object and any subsequent text within the document when this graphical object is displayed within the document's contents. The distance shall be measured in EMUs (English Metric Units). If this object is an inline object (i.e. has a parent element of <wp:anchor distL="228600" … > … </wp:anchor> The The possible values for this attribute are defined by the ST_WrapDistance simple type (§5.5.3.6). |
|
Specifies the minimum distance which shall be maintained between the right edge of this drawing object and any subsequent text within the document when this graphical object is displayed within the document's contents. The distance shall be measured in EMUs (English Metric Units). If this object is an inline object (i.e. has a parent element of <wp:anchor distR="228600" … > … </wp:anchor> The The possible values for this attribute are defined by the ST_WrapDistance simple type (§5.5.3.6). |
|
Specifies the minimum distance which shall be maintained between the top edge of this drawing object and any subsequent text within the document when this graphical object is displayed within the document's contents. The distance shall be measured in EMUs (English Metric Units). If this object is an inline object (i.e. has a parent element of <wp:anchor distT="457200" … > … </wp:anchor> The The possible values for this attribute are defined by the ST_WrapDistance simple type (§5.5.3.6). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_Inline">
<sequence>
<element name="extent" type="a:CT_PositiveSize2D"/>
<element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/>
<element name="docPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
<element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties" minOccurs="0" maxOccurs="1"/>
<element ref="a:graphic" minOccurs="1" maxOccurs="1"/>
</sequence>
<attribute name="distT" type="ST_WrapDistance" use="optional"/>
<attribute name="distB" type="ST_WrapDistance" use="optional"/>
<attribute name="distL" type="ST_WrapDistance" use="optional"/>
<attribute name="distR" type="ST_WrapDistance" use="optional"/>
</complexType>