Share via


Icon Property

Some of the content in this topic may not be applicable to some languages.

MsoIconType

MsoIconType can be one of these MsoIconType constants.
msoIconAlert
msoIconAlertCritical
msoIconAlertInfo
msoIconAlertQuery
msoIconAlertWarning
msoIconNone
msoIconTip

Example

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

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

Applies to | Balloon Object

See Also | Creating and Modifying Balloons | Making Run-Time Modifications to Balloons | Overview of the Office Assistant