Bookmark.StoryLength 属性

获取包含 Bookmark 控件的文章中的字符数。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)

语法

声明
ReadOnly Property StoryLength As Integer
int StoryLength { get; }

属性值

类型:System.Int32
包含 Bookmark 控件的文章中的字符数。

示例

下面的代码示例向文档中添加一个带有文本的 Bookmark 控件,然后在消息框中显示该书签的文本(如果文章长度大于 0)。

此示例针对的是文档级自定义项。

Private Sub BookmarkStoryLength()

    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."

    If bookmark1.StoryLength > 1 Then
        MessageBox.Show(Bookmark1.Text)
    End If

End Sub
private void BookmarkStoryLength()
{
    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.";

    if (bookmark1.StoryLength > 1)
    {
        MessageBox.Show(bookmark1.Text);
    }
}

.NET Framework 安全性

请参见

参考

Bookmark 接口

Microsoft.Office.Tools.Word 命名空间