SqlStudioMessageBox.Show Method (IWin32Window, String, String, MessageBoxIcon, MessageBoxDefaultButton)
Displays a message box in front of the specified object. The message box has the specified text, caption, icon, and default button.
Namespace: Microsoft.SqlServer.Management.Controls
Assembly: Microsoft.SqlServer.Management.Controls (in Microsoft.SqlServer.Management.Controls.dll)
Syntax
'Declaration
Public Shared Function Show ( _
owner As IWin32Window, _
text As String, _
caption As String, _
icon As MessageBoxIcon, _
defaultButton As MessageBoxDefaultButton _
) As DialogResult
'Usage
Dim owner As IWin32Window
Dim text As String
Dim caption As String
Dim icon As MessageBoxIcon
Dim defaultButton As MessageBoxDefaultButton
Dim returnValue As DialogResult
returnValue = SqlStudioMessageBox.Show(owner, text, _
caption, icon, defaultButton)
public static DialogResult Show(
IWin32Window owner,
string text,
string caption,
MessageBoxIcon icon,
MessageBoxDefaultButton defaultButton
)
public:
static DialogResult Show(
IWin32Window^ owner,
String^ text,
String^ caption,
MessageBoxIcon icon,
MessageBoxDefaultButton defaultButton
)
static member Show :
owner:IWin32Window *
text:string *
caption:string *
icon:MessageBoxIcon *
defaultButton:MessageBoxDefaultButton -> DialogResult
public static function Show(
owner : IWin32Window,
text : String,
caption : String,
icon : MessageBoxIcon,
defaultButton : MessageBoxDefaultButton
) : DialogResult
Parameters
- owner
Type: System.Windows.Forms.IWin32Window
An implementation of IWin32Window that will own the modal dialog box.
- text
Type: System.String
The text to display in the message box.
- caption
Type: System.String
The text to display in the title bar of the message box.
- icon
Type: System.Windows.Forms.MessageBoxIcon
One of the MessageBoxIcon values that specifies which icon to display in the message box.
- defaultButton
Type: System.Windows.Forms.MessageBoxDefaultButton
One of the MessageBoxDefaultButton values that specifies the default button for the message box.
Return Value
Type: System.Windows.Forms.DialogResult
One of the DialogResult values.