Metodo QsUIShowInputBoxAsMultiLine(String, String, String, InputBoxValidatingHandler, Int32, Int32, Int32, Boolean)
|
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: 26.4.0.0 (26.4.0.0)
Sintassi public static InputBoxResult ShowInputBoxAsMultiLine(
string prompt,
string title,
string defaultResponse,
InputBoxValidatingHandler validator,
int width,
int height,
int maxLenght = 0,
bool useOnlyOkButton = false
)
Public Shared Function ShowInputBoxAsMultiLine (
prompt As String,
title As String,
defaultResponse As String,
validator As InputBoxValidatingHandler,
width As Integer,
height As Integer,
Optional maxLenght As Integer = 0,
Optional useOnlyOkButton As Boolean = false
) As InputBoxResult
public:
static InputBoxResult^ ShowInputBoxAsMultiLine(
String^ prompt,
String^ title,
String^ defaultResponse,
InputBoxValidatingHandler^ validator,
int width,
int height,
int maxLenght = 0,
bool useOnlyOkButton = false
)
static member ShowInputBoxAsMultiLine :
prompt : string *
title : string *
defaultResponse : string *
validator : InputBoxValidatingHandler *
width : int *
height : int *
?maxLenght : int *
?useOnlyOkButton : bool
(* Defaults:
let _maxLenght = defaultArg maxLenght 0
let _useOnlyOkButton = defaultArg useOnlyOkButton false
*)
-> 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
- defaultResponse String
- String expression displayed in the text box as the default response
- validator InputBoxValidatingHandler
- Delegate used to validate the text
- width Int32
- Larghezza della finestra (-1) default
- height Int32
- Altezza della finestra (-1) default
- maxLenght Int32 (Optional)
- Limit number of characters.
- useOnlyOkButton Boolean (Optional)
- Indicates whether to use only Ok button
Valore di ritorno
InputBoxResultAn InputBoxResult object with the Text and the OK property set to true when OK was clicked.
Vedi anche