Assistant.DoAlert 方法

定义

显示警报并返回一个 Integer 类型的值,指示用户按下了哪个按钮。

public:
 int DoAlert(System::String ^ bstrAlertTitle, System::String ^ bstrAlertText, Microsoft::Office::Core::MsoAlertButtonType alb, Microsoft::Office::Core::MsoAlertIconType alc, Microsoft::Office::Core::MsoAlertDefaultType ald, Microsoft::Office::Core::MsoAlertCancelType alq, bool varfSysAlert);
public int DoAlert (string bstrAlertTitle, string bstrAlertText, Microsoft.Office.Core.MsoAlertButtonType alb, Microsoft.Office.Core.MsoAlertIconType alc, Microsoft.Office.Core.MsoAlertDefaultType ald, Microsoft.Office.Core.MsoAlertCancelType alq, bool varfSysAlert);
abstract member DoAlert : string * string * Microsoft.Office.Core.MsoAlertButtonType * Microsoft.Office.Core.MsoAlertIconType * Microsoft.Office.Core.MsoAlertDefaultType * Microsoft.Office.Core.MsoAlertCancelType * bool -> int
Public Function DoAlert (bstrAlertTitle As String, bstrAlertText As String, alb As MsoAlertButtonType, alc As MsoAlertIconType, ald As MsoAlertDefaultType, alq As MsoAlertCancelType, varfSysAlert As Boolean) As Integer

参数

bstrAlertTitle
String

设置警报的标题。

bstrAlertText
String

设置警报的文本。

alb
MsoAlertButtonType

确定警报上显示的按钮。

alc
MsoAlertIconType

确定警报上显示的图标。

ald
MsoAlertDefaultType

确定将哪个按钮设置为警报的默认按钮。 如果此参数设置为大于按钮数的值,则返回错误。

alq
MsoAlertCancelType

始终将此设置为 msoAlertCancelDefault。 任何其他设置都可能返回错误。

varfSysAlert
Boolean

如果警报显示在消息框中,则为 True;如果通过 Office 助手显示警报,则为 False

返回

适用于