C1.WPF.PrintDocument.4.6.2 Assembly / C1.C1Preview Namespace / ParagraphObjectCollection Class / AddHyperlink Method / AddHyperlink(String,ParagraphObject) Method
The text string to add.
A ParagraphObject which is the target of the hyperlink.

In This Topic
AddHyperlink(String,ParagraphObject) Method
In This Topic
Adds a text hyperlink to the current paragraph content.
Syntax
'Declaration
 
Public Overloads Function AddHyperlink( _
   ByVal text As String, _
   ByVal paragraphObject As ParagraphObject _
) As ParagraphText
 

Parameters

text
The text string to add.
paragraphObject
A ParagraphObject which is the target of the hyperlink.

Return Value

A ParagraphText object representing the specified text string, associated with the specified hyperlink.
Remarks
This method creates a ParagraphText, initializes it with the specified text, sets the ParagraphObject.Hyperlink on that object to a C1Hyperlink initialized with paragraphObject, and adds it to the current collection.
See Also