UIElement.IsTabStop Property

Definition

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