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 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.