Edit

Share via


EntryElement Constructors

Definition

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.

Applies to