Bookmark.Rows Özellik

Tanım

RowsDenetimdeki tüm tablo satırlarını temsil eden bir koleksiyon alır Bookmark .

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

Özellik Değeri

Rows

RowsBir denetimdeki tüm tablo satırlarını temsil eden bir koleksiyon Bookmark .

Örnekler

Aşağıdaki kod örneği, belgeye üç sütunlu, üç satırlık bir tablo ekler, tabloya bir denetim ekler ve Bookmark ardından yer işareti içindeki ilk satırın yüksekliğini değiştirir.

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

private void BookmarkRows()
{
    Word.Table myTable;
    
    this.Paragraphs[1].Range.InsertParagraphBefore();
    myTable = this.Tables.Add(this.Paragraphs[1].Range,
        3, 3, ref missing, ref missing);
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(myTable.Range,
        "bookmark1");
    if (bookmark1.Tables.Count > 0)
    {
        bookmark1.Rows[1].Height = Application.InchesToPoints(1);
    }
}
Private Sub BookmarkRows()

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

    If Bookmark1.Tables.Count > 0 Then
        Bookmark1.Rows(1).Height = Application.InchesToPoints(1)
    End If

End Sub

Şunlara uygulanır