本主题中的某些内容可能不适用于某些语言。
如果每次打开 Office 应用程序时,“Office 助手”显示一个专门的提示,则返回 True。Boolean 类型,可读写。
默认值为 False。TipOfDay 属性对应“显示有关提示”下的“启动时显示‘日积月累’”复选框。“显示有关提示”位于“Office 助手”对话框中的“选项”选项卡。
本示例在指定位置显示“Office 助手”窗口,并在显示该窗口之前设置若干选项。
With Assistant
    .On = True
    .Visible = True
    .Left = 400
    .MoveWhenInTheWay = True
    If Not TipOfDay Then TipOfDay = True
    .Animation = msoAnimationGreeting
End With