Xceed Workbooks for .NET v3.0 Documentation
Xceed.Workbooks.NET Assembly / Xceed.Workbooks.NET Namespace / Hyperlink Class / Hyperlink Constructor

The address that corresponds to the Hyperlink's destination.

This can be the Address of a Cell, an external document, a website or an email address.



In This Topic
    Hyperlink Constructor
    In This Topic
    Creates a Hyperlink that can be used with the ReplaceContent method.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal destinationAddress As String _
    )
    'Usage
     
    
    Dim destinationAddress As String
     
    Dim instance As New Hyperlink(destinationAddress)
    public Hyperlink( 
       string destinationAddress
    )

    Parameters

    destinationAddress

    The address that corresponds to the Hyperlink's destination.

    This can be the Address of a Cell, an external document, a website or an email address.

    Remarks

    Note that this constructor is not meant to be used as a way of adding a Hyperlink in the Worksheet.

    To do so, please use the Add methods found in the HyperlinkCollection class instead; you can also do it via the Worksheet's Hyperlinks property.

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also