[]
Gets the name of the hyperlink.
string Name { get; }
ReadOnly Property Name As String
IRange cell = worksheet.Range["A1"]; IHyperlink hyperlink = cell.Hyperlinks.Add(cell, "https://www.example.com"); string name = hyperlink.Name;