Is True if the specified check box in the Office Assistant balloon is checked. Read/write.

Note
The Microsoft Office Assistant and AnswerWizard have been depreciated in the release of the Microsoft Office system.

Syntax

expression.Checked

expression A variable that represents a BalloonCheckbox object.

Example

This example creates a balloon with a heading, text, and three region choices. When the user clicks OK in the balloon, data for the selected region or regions is printed.

Visual Basic for Applications
With Assistant.NewBalloon .Heading = "Regional Sales Data" .Text = "Select the region(s) you want to print." For i = 1 To 3 .CheckBoxes(i).Text = "Region " & i Next .Button = msoButtonSetOkCancel If .Show = msoBalloonButtonOK Then dataPrinted = 0 For i = 1 To 3 If .CheckBoxes(i).Checked = True Then ' Code to print region data. dataPrinted = dataPrinted + 1 MsgBox "Region " & i & " data printed." End If Next If dataPrinted = 0 Then MsgBox "No data printed." End If End With
activate specific office assistant balloon checked checked property determine if the office assistant balloon is checked ofv open a box within the office assistant balloon

See also: