break line based on hyperlinks

L

lain.kou

Hi,
I have multiple line in a table cell, each of them contains hyperlinks
including plain text. is there any way to get them seperately with the
hyperlink address ?
 
J

Jezebel

Dim pLink as Word.Hyperlink
For each pLink in [cell].Range.Hyperlinks
... pLink.Address


What you put in place of [cell] depends on how you're getting this reference
in the first place.
 
Top