Message Box
Description
Displays a message box with the specified text and button options.
Properties
Category | Property | Type | Description |
---|---|---|---|
Input | Buttons | In(ButtonType) | Specifies which buttons to be displayed in the message box. |
Captions | In(String) | The title of the message box dialog. | |
Text | In(String) | The text to be displayed in the message box. | |
TopMost | In(Boolean) | If selected, always brings the message box to the foreground. | |
Message Box Duration | In(int32) | Duration (in milliseconds) before the message box closes. If the input is smaller than 500 ms, duration will be set to infinite. E.g: Message Box Duration = 400 | |
Output | ChosenButton | Out(String) | A String variable that specifies which of the buttons specified in the Buttons property has been clicked during run time. The possible options are: Ok, Yes, No, or Cancel. |