IAdeUICallbacks::AskMsgText
Revision as of 17:23, 12 May 2015 by Lchrisman (talk | contribs) (Created page with "<< Back to IAdeUICallbacks = bool IAdeUICallbacks:: AskMsgText([in] string question, [in] string title, [in] long maxText, [in] string defaultText, [i...")
bool IAdeUICallbacks:: AskMsgText([in] string question, [in] string title, [in] long maxText, [in] string defaultText, [in] bool bPassword)
Called when the AskMsgText() function is evaluated. You implement this method to display a user-interface element that displays a question and allows the user to enter some text.
Parameters
- «question»: the question to show the user
- «title»: the caption for the dialog shown
- «maxText»: the maximum number of characters allowed in the response
- «defaultText»: The default, or initial text to show in the dialog.
- «bPassword»: a Boolean indicating whether this is a password entry. When true, your input should display a block character such as ● in place of the characters being entered.
Return value
Return True if the user presses Cancel, False otherwise. True will cause the current computation to be aborted.
See Also
Comments
Enable comment auto-refresher