共用方式為


Document.Content 屬性 (2007 系統)

更新:2007 年 11 月

取得 Range,表示主文件大綱。

命名空間:  Microsoft.Office.Tools.Word
組件:  Microsoft.Office.Tools.Word.v9.0 (在 Microsoft.Office.Tools.Word.v9.0.dll 中)

語法

<BrowsableAttribute(False)> _
Public ReadOnly Property Content As Range

Dim instance As Document
Dim value As Range

value = instance.Content
[BrowsableAttribute(false)]
public Range Content { get; }

屬性值

型別:Microsoft.Office.Interop.Word.Range

Range,表示主文件大綱。

範例

下列程式碼範例會將文字加入至文件中的第一個段落,然後建立內含文件所有內容的範圍。接著,程式碼會將此範圍內容的字型大小設定為 24。

這是示範文件層級自訂的範例。

Private Sub DocumentContent()
    Me.Paragraphs(1).Range.InsertParagraphAfter()
    Me.Paragraphs(1).Range.Text = "This is some sample text."
    Dim myRange As Word.Range = Me.Content
    myRange.Font.Size = 24
End Sub
private void DocumentContent()
{
    this.Paragraphs[1].Range.InsertParagraphAfter();
    this.Paragraphs[1].Range.Text = "This is some sample text.";
    Word.Range myRange = this.Content;
    myRange.Font.Size = 24;
}

使用權限

請參閱

參考

Document 類別

Document 成員

Microsoft.Office.Tools.Word 命名空間