[This is preliminary documentation and is subject to change.]

Gets the collection of links contained within the LinkLabel.

Namespace: Tools.WindowsT.FormsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[BrowsableAttribute(false)]
public IReadOnlyList<LinkLabel..::..Link> Links { get; }
Visual Basic
<BrowsableAttribute(False)> _
Public ReadOnly Property Links As IReadOnlyList(Of LinkLabel..::..Link)
	Get
Visual C++
[BrowsableAttribute(false)]
public:
property IReadOnlyList<LinkLabel..::..Link^>^ Links {
	IReadOnlyList<LinkLabel..::..Link^>^ get ();
}
F#
[<BrowsableAttribute(false)>]
member Links : IReadOnlyList<LinkLabel..::..Link>
JScript
function get Links () : IReadOnlyList<LinkLabel..::..Link>

Remarks

This shadowes property is read-only. Do not use unshadowing workarounds to obtain read-write acces to te Links property - it will cause unxpected behaviour. Use the Items collection instead.

Note that any change to the Items collections causes complete change of Links collection

Do not change Start or Length properties unless you know what you are doing.

See Also