Bookmark.ComputeStatistics 方法
取得統計資料,此資料是依據 Bookmark 控制項的內容。
命名空間: Microsoft.Office.Tools.Word
組件: Microsoft.Office.Tools.Word (在 Microsoft.Office.Tools.Word.dll 中)
語法
'宣告
Function ComputeStatistics ( _
Statistic As WdStatistic _
) As Integer
int ComputeStatistics(
WdStatistic Statistic
)
參數
- Statistic
型別:Microsoft.Office.Interop.Word.WdStatistic
WdStatistic.
傳回值
型別:System.Int32
依據 Bookmark 控制項內容的統計資料。
範例
下列程式碼範例加入有文字的 Bookmark,然後使用 ComputeStatistics 方法顯示書籤中的字元總數。
這是示範文件層級自訂的範例。
Private Sub BookmarkComputeStatistics()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
Bookmark1.Text = "This is sample bookmark text."
Dim totalCharacters As Integer = Bookmark1.ComputeStatistics( _
Word.WdStatistic.wdStatisticCharacters)
MessageBox.Show("The bookmark contains " & _
totalCharacters.ToString() & " characters.")
End Sub
private void BookmarkComputeStatistics()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[1].Range,
"bookmark1");
bookmark1.Text = "This is sample bookmark text.";
int totalCharacters = bookmark1.ComputeStatistics(Word
.WdStatistic.wdStatisticCharacters);
MessageBox.Show("The bookmark contains " +
totalCharacters.ToString() + " characters.");
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。