InlineShapes Property

Applies To

Document object, Range object, Selection object.

Description

Returns an InlineShapes collection that represents all the InlineShape objects in a document, range, or selection. Read-only.

See Also

ShapeRange property, Shapes property.

Example

This example displays the number of shapes and inline shapes in the active document.

Set doc = ActiveDocument
Msgbox "InlineShape = " & doc.InlineShapes.Count & _
    vbCr & "Shapes = " & doc.Shapes.Count