0

是否可以从 MS Word 中获取字数,而无需在 c# 中使用回车和隐藏文本。我想获取 MS Word 文档中显示的字数。我正在使用Microsoft.Office.Interop.Word命名空间和 Using ActiveDocument.Words.Count..我得到包括回车在内的所有计数..如何在没有回车和隐藏文本的情况下获得该字数..

4

1 回答 1

1

此代码有效..

int stWordCount = wordobj.ActiveDocument.ComputeStatistics(Word.WdStatistic.wdStatisticWords);
于 2012-02-21T03:44:23.647 回答