Metodo InputBoxShowAsMultiLine (DedNetApplication, String, String, String, InputBoxValidatingHandler, Int32, Int32, Int32, Int32, Int32)
|
Displays a prompt in a dialog box, waits for the user to input text or click a button.
Namespace:
DedNet.Controls
Assembly:
DedNet (in DedNet.dll) Versione: 20.3.0.0 (20.3.0.0)
Sintassipublic static InputBoxResult ShowAsMultiLine(
DedNetApplication app,
string prompt,
string title,
string defaultResponse,
InputBoxValidatingHandler validator,
int xpos,
int ypos,
int width,
int height,
int maxLenght = 0
)
Public Shared Function ShowAsMultiLine (
app As DedNetApplication,
prompt As String,
title As String,
defaultResponse As String,
validator As InputBoxValidatingHandler,
xpos As Integer,
ypos As Integer,
width As Integer,
height As Integer,
Optional maxLenght As Integer = 0
) As InputBoxResult
public:
static InputBoxResult^ ShowAsMultiLine(
DedNetApplication^ app,
String^ prompt,
String^ title,
String^ defaultResponse,
InputBoxValidatingHandler^ validator,
int xpos,
int ypos,
int width,
int height,
int maxLenght = 0
)
static member ShowAsMultiLine :
app : DedNetApplication *
prompt : string *
title : string *
defaultResponse : string *
validator : InputBoxValidatingHandler *
xpos : int *
ypos : int *
width : int *
height : int *
?maxLenght : int
(* Defaults:
let _maxLenght = defaultArg maxLenght 0
*)
-> InputBoxResult
Parametri
- app
- Tipo: DedNetDedNetApplication
DedNet application - prompt
- Tipo: SystemString
String expression displayed as the message in the dialog box - title
- Tipo: SystemString
String expression displayed in the title bar of the dialog box - defaultResponse
- Tipo: SystemString
String expression displayed in the text box as the default response - validator
- Tipo: DedNet.ControlsInputBoxValidatingHandler
Delegate used to validate the text - xpos
- Tipo: SystemInt32
- ypos
- Tipo: SystemInt32
- width
- Tipo: SystemInt32
Width of the form - height
- Tipo: SystemInt32
Height of the form - maxLenght (Optional)
- Tipo: SystemInt32
Limit number of characters
Valore di ritorno
Tipo:
InputBoxResultAn InputBoxResult object with the Text and the OK property set to true when OK was clicked.
Vedi anche