MoveWhenInTheWay Property
Applies To
Assistant object.
Description
True if the Office Assistant window automatically moves when it's in the way of the user's work area. For example, the Assistant will move if it's in the way of dragging or dropping or in the way of keystroke entries. Read/write Boolean.
Remarks
The MoveWhenInTheWay property corresponds to the Move when in the way option under Assistant capabilities on the Options tab in the Office Assistant dialog box.
Example
This example displays the Office Assistant in a specific location, and it sets several options before making the Assistant visible.
With Assistant
.Reduced = True
.Left = 400
.MoveWhenInTheWay = True
.TipOfDay = True
.Visible = True
.Animation = msoAnimGreeting
End With