VisualElement.IsTabStop Property
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.
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.