共用方式為


HOW TO:在文件中加入註解至文字

Document 類別 (Class) 的 Comments 屬性會將註解加入至 Microsoft Office Word 文件中某個範圍的文字。

**適用於:**本主題中的資訊適用於 Word 2007 和 Word 2010 的文件層級專案和應用程式層級專案。如需詳細資訊,請參閱依 Office 應用程式和專案類型提供的功能

下列範例會將註解加入至文件中的第一個段落。

若要在文件層級自訂中將新註解加入至文字

  • 呼叫 Comments 屬性的 Add 方法,並提供範圍和註解文字。 若要使用下列程式碼範例,請從專案的 ThisDocument 類別中執行。

    Me.Comments.Add(Me.Paragraphs(1).Range, "Add a comment to the first paragraph.")
    
    object text = "Add a comment to the first paragraph.";
    this.Comments.Add(this.Paragraphs[1].Range, ref text);
    

若要在應用程式層級增益集中將新註解加入至文字

  • 呼叫 Comments 屬性的 Add 方法,並提供範圍和註解文字。

    下列程式碼範例會將註解加入至現用文件。 若要使用這個範例,請從專案的 ThisAddIn 類別中執行程式碼。

    Me.Application.ActiveDocument.Comments.Add( _
        Me.Application.ActiveDocument.Paragraphs(1).Range, _
        "Add a comment to the first paragraph.")
    
    object text = "Add a comment to the first paragraph.";
    this.Application.ActiveDocument.Comments.Add(
        this.Application.ActiveDocument.Paragraphs[1].Range, ref text);
    

穩固程式設計

若要變更 Word 加入至註解中的使用者縮寫,請使用 UserInitials 屬性。

請參閱

工作

HOW TO:從文件中移除所有的註解

概念

Document 主項目