我想获取包含在 word 文档(形状)中的所有内容控件的标题。我在网上找到了一些技巧。但是当我运行这段代码时,它有一个错误(在图片中)
Microsoft.Office.Interop.Word.Application oWord = (Microsoft.Office.Interop.Word.Application) w;
_activeDoc = oWord.ActiveDocument;
foreach(Microsoft.Office.Interop.Word.Shape s in _activeDoc.Shapes)
foreach(Microsoft.Office.Interop.Word.ContentControl cc in s.TextFrame.TextRange.ContentControls) {
MessageBox.Show(cc.Title.ToString());
}