-
-
Notifications
You must be signed in to change notification settings - Fork 18
show_message_ext
CryoEagle edited this page Jan 6, 2019
·
1 revision
shows popup message like show_message()
but with more options
show_message_ext(str, caption, buttonType)
Argument | Description |
---|---|
string str |
message to popup |
string caption |
caption of window |
MessageBoxButtons buttonType |
type of button ( or buttons ) |
Returns: string
This function will popup message like show_message();
but this function have more options, caption of window and type of button.
show_message_ext("Hello im your window","Window Bob", MessageBoxButtons.YesNoCancel);
The above code will popup message „Hello im your window“ and set caption of window „Window Bob“ and show buttons Yes, No, Cancel.
Back to Debug