Spread WPF 17
GrapeCity.Excel Namespace / ExcelHyperLink Class / ExcelHyperLink Constructor
The description text that is show in the excel instead of the real link
The real address of the link location


In This Topic
    ExcelHyperLink Constructor
    In This Topic
    Initializes a new instance of the ExcelHyperLink class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal description As String, _
       ByVal uri As String _
    )
    'Usage
     
    Dim description As String
    Dim uri As String
     
    Dim instance As New ExcelHyperLink(description, uri)
    public ExcelHyperLink( 
       string description,
       string uri
    )

    Parameters

    description
    The description text that is show in the excel instead of the real link
    uri
    The real address of the link location
    Exceptions
    ExceptionDescription
    throws when the uri is not a valid uri
    Remarks
    If the passed description is a null reference (Nothing in Visual Basic), it will use the uri as the description.
    See Also