Condividi tramite


Proprietà WorksheetBase.Comments

Ottiene un insieme Microsoft.Office.Interop.Excel.Comments che rappresenta tutti i commenti per il foglio di lavoro.

Spazio dei nomi:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property Comments As Comments
    Get
public Comments Comments { get; }

Valore proprietà

Tipo: Microsoft.Office.Interop.Excel.Comments
Insieme Microsoft.Office.Interop.Excel.Comments che rappresenta tutti i commenti per il foglio di lavoro.

Esempi

Nell'esempio di codice seguente viene utilizzata la proprietà Comments per visualizzare il numero di commenti disponibili nel foglio di lavoro corrente prima e dopo l'aggiunta di un commento alla cella A1.

Questo esempio è valido per una personalizzazione a livello di documento.

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.");
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

WorksheetBase Classe

Spazio dei nomi Microsoft.Office.Tools.Excel