Bookmark.ComputeStatistics-Methode
Ruft eine Statistik auf der Grundlage des Inhalts des Bookmark-Steuerelements ab.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)
Syntax
'Declaration
Function ComputeStatistics ( _
Statistic As WdStatistic _
) As Integer
int ComputeStatistics(
WdStatistic Statistic
)
Parameter
- Statistic
Typ: Microsoft.Office.Interop.Word.WdStatistic
WdStatistic.
Rückgabewert
Typ: System.Int32
Eine Statistik auf der Grundlage des Inhalts des Bookmark-Steuerelements.
Beispiele
Im folgenden Codebeispiel wird ein Bookmark-Steuerelement mit Text hinzugefügt. Anschließend wird mithilfe der ComputeStatistics-Methode die Gesamtanzahl der Zeichen im Lesezeichen angezeigt.
Dieses Beispiel bezieht sich auf eine Anpassung auf Dokumentebene.
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-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.