Document.ComputeStatistics 方法 (Word)
返回基于指定文档内容的统计值。 长 。
语法
expression。 ComputeStatistics
( _Statistic_
, _IncludeFootnotesAndEndnotes_
)
expression 是必需的。 一个代表 Document 对象的变量。
参数
名称 | 必需/可选 | 数据类型 | 说明 |
---|---|---|---|
Statistic | 必需 | WdStatistic | 要计算的统计值。 |
IncludeFootnotesAndEndnotes | 可选 | Variant | 如果为 True ,则计算统计信息时包括脚注和尾注。 如果省略此参数,则默认值为 False。 |
备注
根据您选择或安装的语言支持(如,美国英语)的不同,以上列出的某些常量可能不可用。
示例
本示例显示活动文档的字数(包括脚注)。
MsgBox ActiveDocument.ComputeStatistics(Statistic:=wdStatisticWords, _
IncludeFootnotesAndEndnotes:=True) & " words"
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。