BalloonCheckboxes Collection Object

Description

A collection of BalloonCheckbox objects that represent all the check boxes in the Office Assistant balloon.

Using the BalloonCheckboxes Collection

Use the Checkboxes property to return the BalloonCheckboxes collection.

Use Checkboxes(index), where index is a number from 1 through 5, to return a single BalloonCheckbox object. There can be up to five check boxes in one balloon; each check box appears when a value is assigned to its Text property.

The following example writes the checkbox text of all visible checkboxes, in an existing balloon, to the debug window.

For Each box In .CheckBoxes
    If box.Text <> "" Then
        Debug.Print box.Text
    End If
Next
You cannot add check boxes to or remove check boxes from the BalloonCheckboxes collection.

Remarks

Balloon check boxes display the user's choices until he or she dismisses the balloon. Balloon labels record the user's choice as soon as he or she clicks the button beside the label.

Properties

Application property, Count property, Creator property, Item property (BalloonCheckboxes collection), Name property, Parent property.

Example (Microsoft Access)

See the Assistant object example (Microsoft Access).