Metodo QsUIShowInputBox(String, String, String, InputBoxValidatingHandler, Int32, Int32, 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: 26.4.0.0 (26.4.0.0)
Sintassi public static InputBoxResult ShowInputBox(
string prompt,
string title,
string defaultResponse,
InputBoxValidatingHandler validator,
int xpos,
int ypos,
int pwd
)
Public Shared Function ShowInputBox (
prompt As String,
title As String,
defaultResponse As String,
validator As InputBoxValidatingHandler,
xpos As Integer,
ypos As Integer,
pwd As Integer
) As InputBoxResult
public:
static InputBoxResult^ ShowInputBox(
String^ prompt,
String^ title,
String^ defaultResponse,
InputBoxValidatingHandler^ validator,
int xpos,
int ypos,
int pwd
)
static member ShowInputBox :
prompt : string *
title : string *
defaultResponse : string *
validator : InputBoxValidatingHandler *
xpos : int *
ypos : int *
pwd : int -> 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
- xpos Int32
- Numeric expression that specifies the distance of the left edge of the dialog box from the left edge of the screen.
- ypos Int32
- Numeric expression that specifies the distance of the upper edge of the dialog box from the top of the screen
- pwd Int32
-
Valore di ritorno
InputBoxResultAn InputBoxResult object with the Text and the OK property set to true when OK was clicked.
Vedi anche