DocumentBase.ComputeStatistics 方法
基于文档的内容获取统计信息。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public Function ComputeStatistics ( _
statistic As WdStatistic, _
ByRef includeFootnotesAndEndnotes As Object _
) As Integer
public int ComputeStatistics(
WdStatistic statistic,
ref Object includeFootnotesAndEndnotes
)
参数
- statistic
类型:Microsoft.Office.Interop.Word.WdStatistic
WdStatistic 。
- includeFootnotesAndEndnotes
类型:System.Object%
如果为 true,则在计算统计信息时包括脚注和尾注。默认值为 false。
返回值
类型:System.Int32
文档中由 Statistic 参数指定的该类型项的数目。
备注
可选参数
有关可选参数的信息,请参见Office 解决方案中的可选参数。
示例
下面的代码示例使用 ComputeStatistics 方法显示文档中单词的数目(不包括脚注和尾注)。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub DocumentComputeStatistics()
Dim wordCount As Integer = Me.ComputeStatistics( _
Word.WdStatistic.wdStatisticWords, False)
MessageBox.Show(("There are " + wordCount.ToString() + _
" words in this document."))
End Sub
private void DocumentComputeStatistics()
{
object IncludeFootnotesAndEndnotes = false;
int wordCount = this.ComputeStatistics(
Word.WdStatistic.wdStatisticWords,
ref IncludeFootnotesAndEndnotes);
MessageBox.Show("There are " + wordCount.ToString() +
" words in this document.");
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。