April 2006
Beginner
1114 pages
98h 16m
English
workbook.LinkSources([Type])
Returns an array containing the links in a workbook.
|
Argument |
Settings |
|---|---|
|
|
The type of links to return. Possible settings are |
The following code displays the Excel links in a workbook:
linkSources = ThisWorkbook.linkSources(xlOLELinks)
If IsArray(linkSources) Then
For Each link In linkSources
Debug.Print link
Next
End IfRead now
Unlock full access