Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the path of the file in which the icon for an OLE object is stored. Read-only String.
Syntax
expression. IconPath
expression An expression that returns an 'OLEFormat' object.
Example
This example displays the path for each embedded OLE object that's displayed as an icon on the active document.
Dim shapeLoop As Shape
For Each shapeLoop In ActiveDocument.Shapes
If shapeLoop.Type = msoEmbeddedOLEObject Then
If shapeLoop.OLEFormat.DisplayAsIcon = True Then _
Msgbox shapeLoop.OLEFormat.IconPath
End If
Next shapeLoop
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.