Component: Input Message Box (Controls )
From Flowcode Help
Jump to navigationJump to search
Author | Matrix TSL |
Version | 1.0 (Release) |
Category | Controls |
Contents
Input Message Box component
Creates simple dialogue boxes to collect information from a user. Available with multiple button options, OK, Yes / No / Cancel and User String input.
Examples
No additional examples
Downloadable macro reference
This component does not contain any downloadable macros
Simulation macro reference
YesNoCancelMessageBox
Creates a simple Yes/No/Cancel message box with a user message.
Returns 0 for Cancel, 1 for No and 2 for Yes
Parameters
- <- STRING Message
- The message to display to the user
- This parameter may be returned back to the caller
Return value
YesNoMessageBox
Creates a simple Yes/No message box with a user message.
Returns True for Yes and False for No
Parameters
- <- STRING Message
- The message to display to the user
- This parameter may be returned back to the caller
Return value
- BOOL : Returns true if the operation is a success, else false
InputMessageBox
Creates a simple Yes/No input box with a user message and a caption.
The Input variable returns the string the entered by the user.
Returns True for Yes and False for No
Parameters
- <- STRING Message
- The message to display to the user
- This parameter may be returned back to the caller
- <- STRING Caption
- The input field caption
- This parameter may be returned back to the caller
- <- STRING Input
- The input string entered by the user
- This parameter may be returned back to the caller
Return value
- BOOL : Returns true if the operation is a success, else false
Property reference
This component does not contain any properties