how do i check that an inlineshape has an hyperlink

M

mudo453

does anybody know how do i check that if an inlineshape has an
hyperlink. i mean selected inline shape
 
T

Tony Jollans

Something along these lines ...

If Selection.InlineShapes.Count > 0 Then
If Selection.InlineShapes(1).Range.Hyperlinks.Count > 0 Then
MsgBox Selection.InlineShapes(1).Hyperlink.Address
End If
End If
 
Top