Skip to main content

ICommonUI.MessageBox method

Namespace: NextDesign.Desktop

Description

[Obsolete] Displays the message.

argument

NameTypeDescription
messagestringMessage
Cannot be null.
captionstringcaption (uses application name if omitted)

Return value

  • void

Exceptions

NameException ClassDescription
Invalid argumentExtensionArgumentExceptionIf null is specified for message

Annotations

About API specification change and migration method in Ver.1.1

This method will be removed in a future version. Please use ShowMessageBox() in Ver.1.1 or later.
If you are using this API, you need to change the corresponding part in the extension along with the version upgrade to Ver.1.1 or later.

Please refer to the following example and change it.

Before

UI.MessageBox("any message...");

After

UI.ShowMessageBox("any message...");