[]
Gets or sets the text to be displayed for the specified hyperlink. The default value is the address of the hyperlink.
string TextToDisplay { get; set; }
Property TextToDisplay As String
IRange cell = worksheet.Range["A1"];
IHyperlink hyperlink = cell.Hyperlinks.Add(cell, "https://www.example.com");
hyperlink.TextToDisplay = "Visit example";
string textToDisplay = hyperlink.TextToDisplay;