Click or drag to resize

TaskDialog.EnableHyperlinks Property

Gets or sets a value that indicates whether hyperlinks are allowed for the Content, ExpandedInformation and Footer properties.

Namespace:  Ookii.Dialogs
Assembly:  Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public bool EnableHyperlinks { get; set; }

Property Value

Type: Boolean
true when hyperlinks are allowed for the Content, ExpandedInformation and Footer properties; otherwise, false. The default value is false.
Remarks

When this property is true, the Content, ExpandedInformation and Footer properties can use hyperlinks in the following form: <A HREF="executablestring">Hyperlink Text</A>

Note Note
Enabling hyperlinks when using content from an unsafe source may cause security vulnerabilities.

Task dialogs will not actually execute hyperlinks. To take action when the user presses a hyperlink, handle the HyperlinkClicked event.

See Also