Help 方法

       

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

为标准的 Office 联机帮助显示“Office 助手”及内置的带有“请问您要做什么?”的“助手”气球。

expression.Help

表达式   必需。该表达式返回一个 Assistant 对象。

示例

本示例在用户选中“I need more information”复选框后,显示内置的含有“请问您要做什么?”的“助手”气球。

Set b = Assistant.NewBalloon
With b
    .Heading = "User Information"
    .Text = "Select your skill level"
    .CheckBoxes(1).Text = "Beginner."
    .CheckBoxes(2).Text = "Advanced."
    .CheckBoxes(3).Text = "I need more information."
    .Show
End With
If b.CheckBoxes(3).Checked = True Then
    Assistant.Help
End If