在 Word VSTO 中获取 table 样式
Get a table style in Word VSTO
我可以在 Word VSTO 中为 table 设置样式:
Me.Application.ActiveDocument.Tables.Item(1).Style = "Table Grid 8"
如何获得所选的 table 样式?
在C#中,我可以这样获取样式
Globals.ThisDocument.Tables[1].get_Style();
在VB.Net你需要:
Dim style as Microsoft.Office.Interop.Word.Style
style = Globals.ThisAddIn.Application.ActiveDocument.Tables(1).Style
与 C# 的唯一区别是方括号
我可以在 Word VSTO 中为 table 设置样式:
Me.Application.ActiveDocument.Tables.Item(1).Style = "Table Grid 8"
如何获得所选的 table 样式?
在C#中,我可以这样获取样式
Globals.ThisDocument.Tables[1].get_Style();
在VB.Net你需要:
Dim style as Microsoft.Office.Interop.Word.Style
style = Globals.ThisAddIn.Application.ActiveDocument.Tables(1).Style
与 C# 的唯一区别是方括号