C# 中是否有函数 returns 来自 MS Word 文档的语法建议?
Is there a function in C# that returns grammar suggestions from MS Word document?
我正在 .Net 的 Windows C# 语言。
我想从 MS Word 获得语法建议。
现在我正在使用 Microsoft.Office.Interop 并找到了 returns 拼写建议 (expression. GetSpellingSuggestions
) 的功能。
我还找到了显示更正但从 MS Office 打开对话框的功能,我需要选择一个建议。
是否有 returns 语法建议的功能,或者是否可以从 MS 打开的对话框中获取它(通过 _Document.CheckGrammar
方法)?
Word 对象模型没有为此提供任何东西。最好的办法是使用 Document.CheckGrammar 方法突出显示 Word 中的语法错误。
我正在 .Net 的 Windows C# 语言。
我想从 MS Word 获得语法建议。
现在我正在使用 Microsoft.Office.Interop 并找到了 returns 拼写建议 (expression. GetSpellingSuggestions
) 的功能。
我还找到了显示更正但从 MS Office 打开对话框的功能,我需要选择一个建议。
是否有 returns 语法建议的功能,或者是否可以从 MS 打开的对话框中获取它(通过 _Document.CheckGrammar
方法)?
Word 对象模型没有为此提供任何东西。最好的办法是使用 Document.CheckGrammar 方法突出显示 Word 中的语法错误。