Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

IMessageBoxService.ShowMessage(String, String, PortableMessageBoxIcon) Method

Displays a message box with the specified message, title bar caption, and icon.

Namespace: DevExpress.XtraSpreadsheet.Services

Assembly: DevExpress.Spreadsheet.v20.2.Core.dll

Declaration

PortableDialogResult ShowMessage(
    string message,
    string title,
    PortableMessageBoxIcon icon
)

Parameters

Name Type Description
message String

The text to display in the message box.

title String

The text to display in the message box’s title bar.

icon DevExpress.Portable.PortableMessageBoxIcon

The equivalent of the System.Windows.Forms.MessageBoxIcon enumeration. Specifies an icon to display in the message box.

Returns

Type Description
DevExpress.Portable.PortableDialogResult

The equivalent of the System.Windows.Forms.DialogResult enumeration. Indicates the return value of the message box.

See Also