Constants.vbDefaultButton3 字段

定义

指示在显示消息框时将左侧起的第三个按钮作为默认按钮选中。

public: Microsoft::VisualBasic::MsgBoxStyle vbDefaultButton3 = 512;
public const Microsoft.VisualBasic.MsgBoxStyle vbDefaultButton3 = 512;
val mutable vbDefaultButton3 : Microsoft.VisualBasic.MsgBoxStyle
Public Const vbDefaultButton3 As MsgBoxStyle  = 512

字段值

Value = 512

示例

' Set the Ignore button as the default button.
MsgBox("Error occurred", vbDefaultButton3 Or vbAbortRetryIgnore)

注解

调用 MsgBox 函数时,可以在 MsgBoxStyle 代码中使用 枚举来代替实际值。 参数 Buttons 采用 MsgBoxStyle 枚举成员。

适用于

另请参阅