Udostępnij za pośrednictwem


Właściwość WorksheetBase.Comments —

Pobiera Microsoft.Office.Interop.Excel.Comments , która reprezentuje wszystkie komentarze dla tego arkusza.

Przestrzeń nazw:  Microsoft.Office.Tools.Excel
Zestaw:  Microsoft.Office.Tools.Excel.v4.0.Utilities (w Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Składnia

'Deklaracja
Public ReadOnly Property Comments As Comments
public Comments Comments { get; }

Wartość właściwości

Typ: Microsoft.Office.Interop.Excel.Comments
A Microsoft.Office.Interop.Excel.Comments , która reprezentuje wszystkie komentarze dla tego arkusza.

Przykłady

Następujący kod w przykładzie wykorzystano Comments właściwość, aby wyświetlić liczbę komentarzy w bieżącym arkuszu, przed i po dodaniu komentarza do komórki A1.

Ten przykład dotyczy dostosowywania poziomie dokumentu.

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

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

WorksheetBase Klasa

Przestrzeń nazw Microsoft.Office.Tools.Excel