Applies To
Application object, Global object.
Description
Returns an Assistant object that represents the Office Assistant. Read-only.
Example
This example displays the Office Assistant.
Assistant.Visible = True
This example displays the Office Assistant and moves it to the upper-left region of the screen.
With Assistant
.Visible = True
.Move xLeft:=100, yTop:=100
End With