The following code works perfectly in PPT for creating an external hyperlink:
Dim tLink As Link = cell.TextFrame.AddLink
However this does not work with TextFrameEx, as there is no ‘addlink’ method. I cannot find any documentation on how to accomplish this either.
tLink.Begin = cell.TextFrame.Text.IndexOf(“Link”)
tLink.End = tLink.Begin + “Link”.Length
tLink.SetExternalHyperlink(“google.com”)