Bookmark.ComputeStatistics-Methode (2007 System)
Aktualisiert: November 2007
Ruft eine Statistik auf der Grundlage des Inhalts des Bookmark-Steuerelements ab.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)
Syntax
'Declaration
Public Function ComputeStatistics ( _
Statistic As WdStatistic _
) As Integer
'Usage
Dim instance As Bookmark
Dim Statistic As WdStatistic
Dim returnValue As Integer
returnValue = instance.ComputeStatistics(Statistic)
public int ComputeStatistics(
WdStatistic Statistic
)
Parameter
Statistic
Typ: Microsoft.Office.Interop.Word.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.");
}
Berechtigungen
- 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.