Private Property

Applies To

Balloon object.

Description

Returns or sets an integer that uniquely identifies the Office Assistant balloon that initiates the callback procedure. Read/write Long.

Remarks

It may be helpful to use this property if you use the same callback procedure for a variety of circumstances.

Example

This example identifies the Office Assistant balloon by setting the Private property to 129. The callback procedure, myCallback, is used in a variety of circumstances, and the integer 129 will be used to identify this circumstance.

With myBalloon
    .Heading = "Select a region"
    .Private = 129
    .Callback = "myCallback"
    .Show
End With