Sdílet prostřednictvím


WorksheetBase.Comments – vlastnost

Získává Microsoft.Office.Interop.Excel.Comments kolekce představuje všechny komentáře na list.

Obor názvů:  Microsoft.Office.Tools.Excel
Sestavení:  Microsoft.Office.Tools.Excel.v4.0.Utilities (v Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Syntaxe

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

Hodnota vlastnosti

Typ: Microsoft.Office.Interop.Excel.Comments
A Microsoft.Office.Interop.Excel.Comments kolekce představuje všechny komentáře na list.

Příklady

Následující kód například použití Comments vlastnost zobrazení počet komentářů na aktuálním list před a po přidání komentáře k buňce A1.

Tento příklad je přizpůsobení úrovni 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.");
}

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

WorksheetBase Třída

Microsoft.Office.Tools.Excel – obor názvů