Note
The Microsoft Office Assistant has been deprecated in the release of the Microsoft Office system.
Gets or sets a MsoIconType constant that represents the type of icon that appears in the upper-left portion of the Office Assistant balloon. Read/write.

Syntax

expression.Icon

expression A variable that represents a Balloon object.

Example
This example creates a balloon with an "Alert" icon that instructs the user to select a printer.

Visual Basic for Applications
With Assistant.NewBalloon .Heading = "Select A Printer" .Text = "You must select a printer before printing." .Icon = msoIconAlert .CheckBoxes(1).Text = "Local printer" .CheckBoxes(2).Text = "Network printer" .Show End With
create alert icon balloon for printer selection design icon for online help balloon icon icon property ofv set icon type for office assistant

See also: