Gets or sets an integer that identifies the Office Assistant balloon that initiated the callback procedure. Read/write.

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

Syntax

expression.Private

expression A variable that represents a Balloon object.

Remarks

This property is helpful if you run the same callback procedure from more than one balloon.

Example

This example identifies the Office Assistant balloon by setting the Private property to 129.

Visual Basic for Applications
Set printerOrientation = Assistant.NewBalloon With printerOrientation .Heading = " Print portrait or landscape?" .Text = "Click OK when you've selected the " & _ "printer orientation." .Labels(1).Text = "Portrait" .Labels(2).Text = "Landscape" .BalloonType = msoBalloonTypeButtons .Mode = msoModeModeless .Button = msoButtonSetOK .Private = 129 .Callback = "PortraitOrLandscape " .Show End With
initiate a callback procedure ofv Private private property return identifier for the office assistant balloon set an integer to identify the office assistant balloon

See also: