[]
Gets or sets the address of the target document.
For a hyperlink to a location in the current document, set SubAddress and set this value to null.
string Address { get; set; }
Property Address As String
IRange cell = worksheet.Range["A1"];
IHyperlink hyperlink = cell.Hyperlinks.Add(cell, "https://www.example.com");
hyperlink.Address = "https://www.mescius.com";
string address = hyperlink.Address;