AssistWithAlerts 属性

       

本主题中的某些内容可能不适用于某些语言。

当“Office 助手”显示在屏幕上时,如果“Office 助手”气球发送应用程序的警告信息,则返回 TrueBoolean 类型,可读写。

说明

AssistWithAlerts 属性对应于“使用 Office 助手”下的“显示警告信息”复选框,“使用 Office 助手”位于“Office 助手”对话框中的“选项”选项卡上。

如果该属性值为 False,那么应用程序将在对话框中显示警告信息。

示例

本示例可实现的功能为:在产生应用程序的警告信息时,显示“Office 助手”。

With Assistant
    .On = True
    .Visible = True
    .AssistWithHelp = True
    .AssistWithAlerts = True
    .Animation = msoAnimationGetAttentionMajor
End With