AdvancedLabelResolveHyperlinks Property

Gets or sets whether hyperlinks should be resolved.

Definition

Namespace: KGySoft.WinForms.Controls
Assembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
C#
[DefaultValueAttribute(HyperlinkResolveMode.None)]
public HyperlinkResolveMode ResolveHyperlinks { get; set; }

Property Value

HyperlinkResolveMode

Remarks

When value is ResolveHrefsOnly, hyperlinks will be resolved only in the following form:
This is a <a href="https://github.com/koszeggy">hyperlink</a>

When value is ResolveAll, simple inline hyperlinks will be resolved, too.

When value is None, you need to explicitly set LinkArea to specify a link in the text. If it should contain more than one links, you can use the Links property.

See Also