EntryAttribute 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
EntryAttribute() |
Public constructor |
EntryAttribute(String) |
Public constructor |
EntryAttribute()
Public constructor
public EntryAttribute ();
Applies to
EntryAttribute(String)
Public constructor
public EntryAttribute (string placeholder);
new MonoTouch.Dialog.EntryAttribute : string -> MonoTouch.Dialog.EntryAttribute
Parameters
- placeholder
- String
String to be displayed if the value of the string is null or empty.
Remarks
class Login {
[Entry ("Enter your name")]
string Name;
[Entry ("Enter your password")]
[Password]
string Password;
}