Xamarin.Forms by Microsoft

<PackageReference Include="Xamarin.Forms" Version="4.5.0.657" />

.NET API 1,265,280 bytes

 InputView

The base class of a view which can take keyboard input.

Backing store for the CharacterSpacing property.

public static readonly BindableProperty IsReadOnlyProperty

Backing store for the IsReadOnly property.

Backing store for the IsSpellCheckEnabled property.

public static readonly BindableProperty KeyboardProperty

Backing store for the Keyboard property.

public static readonly BindableProperty MaxLengthProperty

Backing store for the MaxLength property.

Backing store for the PlaceholderColor property.

public static readonly BindableProperty PlaceholderProperty

Backing store for the Placeholder property.

public static readonly BindableProperty TextColorProperty

Backing store for the TextColor property.

public static readonly BindableProperty TextProperty

Backing store for the Text property.

public double CharacterSpacing { get; set; }

Gets or sets a value that indicates the number of device-independent units that should be in between characters in the text displayed by the Entry. Applies to Text and Placeholder.

public bool IsReadOnly { get; set; }

Gets or sets a value that indicates whether user should be prevented from modifying the text. Default is false.

public bool IsSpellCheckEnabled { get; set; }

Gets or sets a value that controls whether spell checking is enabled.

public Keyboard Keyboard { get; set; }

Gets or sets the Keyboard for the InputView. This is a bindable property.

public int MaxLength { get; set; }

Gets or sets the maximum allowed length of input.

public string Placeholder { get; set; }

Gets or sets the text that is displayed when the control is empty.

public Color PlaceholderColor { get; set; }

Gets or sets the color of the placeholder text.

public string Text { get; set; }

Gets or sets the text of the input view. This is a bindable property.

public Color TextColor { get; set; }

Gets or sets the text color.

Event that is raised when the text of the Editor changes.

protected virtual void OnTextChanged(string oldValue, string newValue)