我一直在使用 excel,但是我在 Word 自动化中遇到了一些问题/问题。我目前想动态格式化一个word文件。下面的代码应该打开一个现有文件并对同一页面上的两个不同表进行更改。
我想知道如何将插入菜单中的复选框动态添加到表格单元格中,或者更改表格单元格中已存在复选框的选中状态。感谢您的任何建议!它现在设置为写入文本值,但这是例如直到弄清楚..
Dim oWord = New Microsoft.Office.Interop.Word.Application
Dim Dir As String = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
oWord.Documents.Open(Dir & "\welcomeletter.docx")
Dim oDoc = oWord.ActiveDocument
oWord.Visible = True
Dim tbl As Word.Table = oDoc.Tables(1)
tbl.Cell(1, 1).Range.Text = "Checkbox1"
tbl.Cell(2, 1).Range.Text = "Checkbox2"
Dim tbl2 As Word.Table = oDoc.Tables(2)
tbl2.Cell(1, 1).Range.Text = "Checkbox3"