作为 SharePoint 工作流的一部分,名为“以文本形式链接到图形”的自定义文档属性填充了指向用户提供的图形的链接。我正在尝试在 Word 文档模板中编写一个宏,这样当用户运行它时,图片就会添加到文档中。这是我到目前为止的代码:
Dim wdDoc As Document
Dim filePath As String
Set wdDoc = ActiveDocument
filePath = wdDoc.CustomDocumentProperties("Link to Graphics As Text").Value //receive error here
wdDoc.Shapes.AddPicture _
FileName:=filePath, _
LinkToFile:=msoTrue, _
SaveWithDocument:=msoTrue, _
Left:=-5, _
Top:=5