Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

UIElement.IsTabStop Property

Definition

Namespace:
Microsoft.UI.Xaml

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 a control is included in tab navigation.

public:
 property bool IsTabStop { bool get(); void set(bool value); };
bool IsTabStop();

void IsTabStop(bool value);
public bool IsTabStop { get; set; }
var boolean = uIElement.isTabStop;
uIElement.isTabStop = boolean;
Public Property IsTabStop As Boolean

Property Value

Boolean

bool

True, if the control is included in tab navigation. Otherwise, false. The default is true.

Remarks

If IsTabStop is false, the element is excluded from tab navigation.

Applies to

See also


Feedback

Was this page helpful?