LinkLabel.TabStop 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 the user can tab to the LinkLabel.
public:
property bool TabStop { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(true)]
public bool TabStop { get; set; }
[<System.ComponentModel.Browsable(true)>]
member this.TabStop : bool with get, set
Public Property TabStop As Boolean
Property Value
true
if the user can tab to the LinkLabel;otherwise, false
. The default is true
.
- Attributes
Remarks
The TabStop property is true
by default, as long as there is at least one link of greater than zero length in the Links collection. The LinkLabel control has a single TabIndex value. However, each link of greater than zero length gets its own tab stop, in left-to-right order. To prevent tab navigation to the LinkLabel control, set the TabStop property to false
. However, be aware that adding new links to the Links collection will automatically set the TabStop property to true
again.