Proprietà DocumentBase.Comments
Ottiene una raccolta di Comments che rappresenta tutti i commenti del documento.
Spazio dei nomi: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property Comments As Comments
public Comments Comments { get; }
Valore proprietà
Tipo: Microsoft.Office.Interop.Word.Comments
Raccolta di Comments che rappresenta tutti i commenti del documento.
Esempi
Nell'esempio di codice riportato di seguito viene illustrato come aggiungere testo al primo paragrafo e un commento alla seconda parola del paragrafo.Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.
Private Sub DocumentComments()
Me.Paragraphs(1).Range.InsertParagraphAfter()
Me.Paragraphs(1).Range.Text = "This is sample Text"
Dim commentText As Object = "This is comment text"
Me.Comments.Add(Me.Paragraphs(1).Range.Words(2), commentText)
End Sub
private void DocumentComments()
{
this.Paragraphs[1].Range.InsertParagraphAfter();
this.Paragraphs[1].Range.Text = "This is sample Text";
object commentText = "This is comment text";
this.Comments.Add(this.Paragraphs[1].Range.Words[2], ref commentText);
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.