ICommonUI.MessageBox method
Namespace: NextDesign.Desktop
Description
[Obsolete] Displays the message.
argument
Name | Type | Description |
---|---|---|
message | string | Message Cannot be null. |
caption | string | caption (uses application name if omitted) |
Return value
- void
Exceptions
Name | Exception Class | Description |
---|---|---|
Invalid argument | ExtensionArgumentException | If 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...");