DocumentBase.Characters 属性
获取一个 Characters 集合,该集合表示文档中的字符。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property Characters As Characters
public Characters Characters { get; }
属性值
类型:Microsoft.Office.Interop.Word.Characters
一个 Characters 集合,表示文档中的字符。
示例
下面的代码示例向第一个段落添加文本,然后显示一个包含文档中字符总数的消息框。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub DocumentCharacters()
Me.Paragraphs(1).Range.InsertParagraphAfter()
Me.Paragraphs(1).Range.Text = "This is sample text."
MessageBox.Show("Total characters in document: " & Me.Characters.Count)
End Sub
private void DocumentCharacters()
{
this.Paragraphs[1].Range.InsertParagraphAfter();
this.Paragraphs[1].Range.Text = "This is sample text.";
MessageBox.Show("Total characters in document: " + this.Characters.Count);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。