Constants.vbDefaultButton2 字段
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示在显示消息框时将左侧起的第二个按钮作为默认按钮选中。
public: Microsoft::VisualBasic::MsgBoxStyle vbDefaultButton2 = 256;
public const Microsoft.VisualBasic.MsgBoxStyle vbDefaultButton2 = 256;
val mutable vbDefaultButton2 : Microsoft.VisualBasic.MsgBoxStyle
Public Const vbDefaultButton2 As MsgBoxStyle = 256
字段值
Value = 256示例
' Set the Retry button as the default button.
MsgBox("Error occurred", vbDefaultButton2 Or vbAbortRetryIgnore)
注解
调用 MsgBox
函数时,可以在 MsgBoxStyle
代码中使用 枚举来代替实际值。 参数 Buttons
采用 MsgBoxStyle
枚举成员。