OLEFormat.IconLabel property (Word)

Returns or sets the text displayed below the icon for an OLE object. Read/write String.

Syntax

expression. IconLabel

expression An expression that returns an 'OLEFormat' object.

Example

This example changes the text below the icon for the first shape in the selection.

Dim olefTemp As OLEFormat 
 
If Selection.ShapeRange.Count >= 1 Then 
 Set olefTemp = Selection.ShapeRange(1).OLEFormat 
 With olefTemp 
 .DisplayAsIcon = True 
 .IconLabel = "My Icon" 
 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.