OLEFormat.IconName property (Word)

Returns or sets the program file in which the icon for an OLE object is stored. Read/write String.

Syntax

expression. IconName

expression An expression that returns an 'OLEFormat' object.

Example

This example changes the first shape in the selection to be displayed as an icon and sets the text below the icon to the icon's file name.

Dim olefTemp As OLEFormat 
 
If Selection.ShapeRange.Count >= 1 Then 
 Set olefTemp = Selection.ShapeRange(1).OLEFormat 
 With olefTemp 
 .DisplayAsIcon = True 
 .IconLabel = .IconName 
 End With 
End If

See also

OLEFormat Object

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.