VisualElement.IsTabStop Property

Definition

Gets or sets a value that indicates whether this element is included in tab navigation. This is a bindable property.

public bool IsTabStop { get; set; }
member this.IsTabStop : bool with get, set

Property Value

true if the element is included in tab navigation; otherwise, false. Default value is true.

Implements

Remarks

Controlling the tab sequence with a combination of IsTabStop and TabIndex rather than using the default tab sequence is sometimes necessary in order to tune the keyboard accessibility of your UI. For more info, see Keyboard Accessibility in Xamarin.Forms.

Applies to