Compartilhar via


Field.InlineShape Property

Word Developer Reference

Returns an InlineShape object that represents the picture, OLE object, or ActiveX control that is the result of an INCLUDEPICTURE or EMBED field.

Syntax

expression.InlineShape

expression   An expression that returns a Field object.

Remarks

An InlineShape object is treated like a character and is positioned as a character within a line of text.

Example

This example returns the width of the inline shape associated with the first field in the active document. For this example to work, the field must be an INCLUDEPICTURE field.

Visual Basic for Applications
  If ActiveDocument.Fields(1).Type = wdFieldIncludePicture Then
    MsgBox ActiveDocument.Fields(1).InlineShape.Width
End If

See Also