Compartilhar via


OLEFormat.IconLabel Property

Word Developer Reference

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.

Visual Basic for Applications
  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