ImageGear .NET v25.2 - Updated
ImageGear.Art.Forms Assembly / ImageGear.ART.Forms Namespace / InputBox Class / InputBox Constructor / InputBox Constructor(String,String,String,Boolean)
Window title.
Explanatory text shown at top of window.
Initial text to populate edit box with.
If true, the edit box is used to enter a password with its contents obscured during text entry.




In This Topic
    InputBox Constructor(String,String,String,Boolean)
    In This Topic
    Initializes a new instance of the InputBox class to allow the user to input a string.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal title As String, _
       ByVal caption As String, _
       ByVal text As String, _
       ByVal isPassword As Boolean _
    )
    'Usage
     
    Dim title As String
    Dim caption As String
    Dim text As String
    Dim isPassword As Boolean
     
    Dim instance As New InputBox(title, caption, text, isPassword)
    public InputBox( 
       string title,
       string caption,
       string text,
       bool isPassword
    )
    public: InputBox( 
       string* title,
       string* caption,
       string* text,
       bool isPassword
    )
    public:
    InputBox( 
       String^ title,
       String^ caption,
       String^ text,
       bool isPassword
    )

    Parameters

    title
    Window title.
    caption
    Explanatory text shown at top of window.
    text
    Initial text to populate edit box with.
    isPassword
    If true, the edit box is used to enter a password with its contents obscured during text entry.

    Return Value

    The new instance of InputBox class.
    See Also