  | InputDialogInput Property  | 
 
            Gets or sets the text specified by the user.
            
 
    Namespace: 
   Ookii.Dialogs
    Assembly:
   Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic string Input { get; set; }Public Property Input As String
	Get
	Set
public:
property String^ Input {
	String^ get ();
	void set (String^ value);
}member Input : string with get, set
Property Value
Type: 
String
            The initial text of the input field, or the text specified by the user. The default vaue is an empty string ("").
            
Remarks
            Setting this property before calling 
ShowDialog determines the initial text in the input field. Retrieving
            the property after the user has clicked OK will return the text entered by the user.
            
See Also