.NET Framework Class Library
Control..::.IsTabStop Property

Gets or sets a value that indicates whether a control is included in tab navigation. This is a dependency property.

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Syntax

Visual Basic (Declaration)
<BindableAttribute(True)> _
Public Property IsTabStop As Boolean
Visual Basic (Usage)
Dim instance As Control
Dim value As Boolean

value = instance.IsTabStop

instance.IsTabStop = value
C#
[BindableAttribute(true)]
public bool IsTabStop { get; set; }
Visual C++
[BindableAttribute(true)]
public:
property bool IsTabStop {
    bool get ();
    void set (bool value);
}
JScript
public function get IsTabStop () : boolean
public function set IsTabStop (value : boolean)
XAML Attribute Usage
<object IsTabStop="bool" .../>

Property Value

Type: System..::.Boolean
true if the control is included in tab navigation; otherwise, false. The default is true.
Dependency Property Information

Identifier field

IsTabStopProperty

Metadata properties set to true

None

Remarks

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

Examples

The following example shows how to set the IsTabStop property and how to test whether a control is included in tab navigation.

XAML
<Button Name="btn13" IsTabStop="true" Click="IsTabStop">
  IsTabStop
</Button>
Visual Basic
Private Sub IsTabStop(ByVal Sender As Object, ByVal e As RoutedEventArgs)

    If (btn13.IsTabStop = True) Then
        btn13.Content = "Control is a tab stop."
    End If

End Sub
C#
void IsTabStop(object sender, RoutedEventArgs e)
{
    if (btn13.IsTabStop == true)
    {
        btn13.Content = "Control is a tab stop.";
    }
}
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker