Partager via


WorksheetBase.Comments, propriété

Obtient une collection Microsoft.Office.Interop.Excel.Comments qui représente tous les commentaires pour la feuille de calcul.

Espace de noms :  Microsoft.Office.Tools.Excel
Assembly :  Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Syntaxe

'Déclaration
Public ReadOnly Property Comments As Comments
public Comments Comments { get; }

Valeur de propriété

Type : Microsoft.Office.Interop.Excel.Comments
Une collection Microsoft.Office.Interop.Excel.Comments qui représente tous les commentaires pour la feuille de calcul.

Exemples

L'exemple de code suivant utilise la propriété Comments pour afficher le nombre de commentaires sur la feuille de calcul active avant et après avoir ajouté un commentaire à la cellule A1.

Cet exemple illustre une personnalisation au niveau du document.

Private Sub GetCommentsCount()
    MsgBox("Before adding a comment, there are " & _
        Me.Comments.Count & " comments in the worksheet.")

    Me.Range("A1").AddComment( _
        ("This is a comment for cell" & " A1"))

    MsgBox("After adding a comment, there are " & _
        Me.Comments.Count & " comments in the worksheet.")
End Sub
private void GetCommentsCount()
{
    MessageBox.Show("Before adding a comment, there are " + 
        this.Comments.Count + " comments in the worksheet.");

    this.Range["A1", missing].AddComment("This is a comment for cell" +
        " A1");

    MessageBox.Show("After adding a comment, there are " + 
        this.Comments.Count + " comments in the worksheet.");
}

Sécurité .NET Framework

Voir aussi

Référence

WorksheetBase Classe

Microsoft.Office.Tools.Excel, espace de noms