Bookmark.Paragraphs Özellik

Tanım

ParagraphsDenetimdeki tüm paragrafları temsil eden bir koleksiyon alır Bookmark .

public Microsoft.Office.Interop.Word.Paragraphs Paragraphs { get; }

Özellik Değeri

Paragraphs

ParagraphsDenetimdeki tüm paragrafları temsil eden bir koleksiyon Bookmark .

Örnekler

Aşağıdaki kod örneği, Bookmark ilk paragrafa metin içeren bir denetim ekler ve paragrafı çift aralıklı metin satırları olarak değiştirir.

Bu örnek, belge düzeyinde özelleştirme içindir

private void BookmarkParagraphs()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();

    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");

    bookmark1.Text = "This example inserts some sample bookmark text" +
        " and will then set the line spacing of the bookmark" +
        " to double space.";
    bookmark1.InsertAfter(" This is text inserted after the bookmark");
    bookmark1.Paragraphs.LineSpacingRule = Word.WdLineSpacing
        .wdLineSpaceDouble;
}
Private Sub BookmarkParagraphs()

    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
        Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")

    Bookmark1.Text = "This example inserts some sample " _
        & "bookmark text" & " and will then set the line" _
        & "spacing of the bookmark" & " to double space."
    Bookmark1.InsertAfter(" This is text inserted after " _
        & "the bookmark")
    Bookmark1.Paragraphs.LineSpacingRule = Word.WdLineSpacing _
        .wdLineSpaceDouble

End Sub

Şunlara uygulanır