问题描述
我需要使用 VBA 在 word 中的单个表格单元格中添加多个内容控件和附加文本。这是我需要的示例:
With rng.ContentControls.Add(wdContentControlRichText)
.title = "Book Name"
.Tag = "title"
End With
如果我的范围设置为单元格,我将如何使以下伪代码工作:
Set rng = objDoc.Tables(1).Cell(2,1).Range
With rng.ContentControls.Add(wdContentControlRichText)
.title = "Book Name"
.Tag = "title"
End With
" has been read by "
With rng.ContentControls.Add(wdContentControlRichText)
.title = "People Count"
.Tag = "count"
End With
" people who have given it an average score of "
With rng.ContentControls.Add(wdContentControlRichText)
.title = "score"
.Tag = "score"
End With
" out of 5"
这是一些实际的代码。它是将第三个 insertafter 和内容控件放在第二个 insertafter 和第二个内容控件之间
With rng.ContentControls.Add(wdContentControlRichText)
.title = "Asset ID"
.Tag = "asset_id"
End With
rng.InsertAfter " | Rev. "
rng.Collapse Direction:=wdCollapseEnd
rng.Move wdCharacter,-1
With rng.ContentControls.Add(wdContentControlRichText)
.title = "Revison Number"
.Tag = "revision_num"
End With
rng.InsertAfter " | Effective Date: "
rng.Collapse Direction:=wdCollapseEnd
rng.Move wdCharacter,-1
With rng.ContentControls.Add(wdContentControlRichText)
.title = "Effective Date"
.Tag = "effective_date"
End With
解决方法
试试这个:
Set rng = objDoc.Tables(1).Cell(2,1).Range
rng.Collapse wdCollapseStart
With rng.ContentControls.Add(wdContentControlRichText)
.Title = "Effective Date"
.Tag = "effective_date"
.SetPlaceholderText Text:="Effective date"
End With
rng.Text = " | Effective Date: "
rng.Collapse wdCollapseStart
With rng.ContentControls.Add(wdContentControlRichText)
.Title = "Revison Number"
.Tag = "revision_num"
.SetPlaceholderText Text:="Rev Num"
End With
rng.Text = " | Rev. "
rng.Collapse wdCollapseStart
With rng.ContentControls.Add(wdContentControlRichText)
.Title = "Asset ID"
.Tag = "asset_id"
.SetPlaceholderText Text:="Asset ID"
End With