EntryElement Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EntryElement(String, String, String) |
Constructs an EntryElement with the given caption, placeholder and initial value. |
EntryElement(String, String, String, Boolean) |
Constructs an EntryElement for password entry with the given caption, placeholder and initial value. |
EntryElement(String, String, String)
Constructs an EntryElement with the given caption, placeholder and initial value.
public EntryElement (string caption, string placeholder, string value);
new MonoTouch.Dialog.EntryElement : string * string * string -> MonoTouch.Dialog.EntryElement
Parameters
- caption
- String
The caption to use
- placeholder
- String
Placeholder to display when no value is set.
- value
- String
Initial value.
Applies to
EntryElement(String, String, String, Boolean)
Constructs an EntryElement for password entry with the given caption, placeholder and initial value.
public EntryElement (string caption, string placeholder, string value, bool isPassword);
new MonoTouch.Dialog.EntryElement : string * string * string * bool -> MonoTouch.Dialog.EntryElement
Parameters
- caption
- String
The caption to use.
- placeholder
- String
Placeholder to display when no value is set.
- value
- String
Initial value.
- isPassword
- Boolean
True if this should be used to enter a password.