Reports for WinForms | ComponentOne
C1.C1Report.4 Assembly / C1.C1Preview Namespace / ParagraphObjectCollection Class / AddHyperlink Method / AddHyperlink(String,String,Style) Method
The text string to add.
The name of the anchor which is the target of the hyperlink.
A style used to render the string.

In This Topic
    AddHyperlink(String,String,Style) Method
    In This Topic
    Adds a text hyperlink with a specified style to the current paragraph content.
    Syntax
    'Declaration
     
    Public Overloads Function AddHyperlink( _
       ByVal text As String, _
       ByVal anchorName As String, _
       ByVal style As Style _
    ) As ParagraphText
    public ParagraphText AddHyperlink( 
       string text,
       string anchorName,
       Style style
    )

    Parameters

    text
    The text string to add.
    anchorName
    The name of the anchor which is the target of the hyperlink.
    style
    A style used to render the string.

    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 and style, sets the ParagraphObject.Hyperlink on that object to a C1Hyperlink initialized with anchorName, and adds it to the current collection.
    See Also