The WPF.HyperlinkDialog class implements a built-in dialog box for inserting and editing a hyperlink at the current text input position. The dialog box inserts either a HypertextLink to an external location or a DocumentLink to a location in the same document. If there is such a link at the current input position, the data of the link is shown and can be edited. Furthermore the hyperlink at the current input position can be deleted. The dialog box can only be opened, if either HypertextLinkCollection.CanAdd returns true or if DocumentLinkCollection.GetItem() or HypertextLinkCollection.GetItem() does not return null. Otherwise, an exception occurs. Each item of the dialog box has a name, available through its Name property, which corresponds with a member of the WPF.HyperlinkDialog.DialogItem enumeration. The FrameworkElement.FindName method can be used to get a certain item and manipulate, move or delete it. The WPF.HyperlinkDialog is a modal dialog box which must be shown with the WPF.HyperlinkDialog.ShowDialog method.

Syntax

public class HyperlinkDialog : System.Windows.Window
Public Class HyperlinkDialog
  Inherits System.Windows.Window

Introduced: X12.

Examples

The following example creates an HyperlinkDialog object and shows the dialog box.

TXTextControl.WPF.HyperlinkDialog dlg = new TXTextControl.WPF.HyperlinkDialog(textControl1);
dlg.ShowDialog();
Dim dlg As New TXTextControl.WPF.HyperlinkDialog(textControl1)
dlg.ShowDialog()

Constructors

Constructor Description
HyperlinkDialog Creates a HyperlinkDialog object for the specified WPF.TextControl.

Enumerations

Enumeration Description
DialogItem Each DialogItem represents an item in a WPF.HyperlinkDialog dialog box.