Workbook.UpdateLinks 属性 (Excel)
返回或设置一个 XlUpdateLink 常量,该常量指示工作簿用于更新嵌入的 OLE 链接的设置。 读/写。
语法
表达式。UpdateLinks
表达 一个代表 Workbook 对象的变量。
示例
在本示例中,Microsoft Excel 确定更新链接的设置,并通知用户。
Sub UseUpdateLinks()
Dim wkbOne As Workbook
Set wkbOne = Application.Workbooks(1)
Select Case wkbOne.UpdateLinks
Case xlUpdateLinksAlways
MsgBox "Links will always be updated " & _
"for the specified workbook."
Case xlUpdateLinksNever
MsgBox "Links will never be updated " & _
"for the specified workbook."
Case xlUpdateLinksUserSetting
MsgBox "Links will update according " & _
"to user settting for the specified workbook."
End Select
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。