Reduced Property

Microsoft Office Visual Basic

Some of the content in this topic may not be applicable to some languages.

True if the Office Assistant window appears in its smaller size. Read/write Boolean.

Remarks

This property is not used in Microsoft Office.

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 = msoAnimationGreeting
End With