Metodo QsUIShowInputBoxAsMultiLine(String, String, String, InputBoxValidatingHandler, Int32)
|
Displays a prompt in a dialog box, waits for the user to input text or click a button.
Namespace: QsUIAssembly: QsUI (in QsUI.dll) Versione: 1.0.0.0 (1.0.0.0)
Sintassipublic static InputBoxResult ShowInputBoxAsMultiLine(
string prompt,
string title,
string defaultText,
InputBoxValidatingHandler validator,
int maxLenght = 0
)
Public Shared Function ShowInputBoxAsMultiLine (
prompt As String,
title As String,
defaultText As String,
validator As InputBoxValidatingHandler,
Optional maxLenght As Integer = 0
) As InputBoxResult
public:
static InputBoxResult^ ShowInputBoxAsMultiLine(
String^ prompt,
String^ title,
String^ defaultText,
InputBoxValidatingHandler^ validator,
int maxLenght = 0
)
static member ShowInputBoxAsMultiLine :
prompt : string *
title : string *
defaultText : string *
validator : InputBoxValidatingHandler *
?maxLenght : int
(* Defaults:
let _maxLenght = defaultArg maxLenght 0
*)
-> InputBoxResult
Parametri
- prompt String
- String expression displayed as the message in the dialog box
- title String
- String expression displayed in the title bar of the dialog box
- defaultText String
- String expression displayed in the text box as the default response
- validator InputBoxValidatingHandler
- Delegate used to validate the text
- maxLenght Int32 (Optional)
- Limit number of characters.
Valore di ritorno
InputBoxResultAn InputBoxResult object with the Text and the OK property set to true when OK was clicked.
Vedi anche