مشاركة عبر


WorksheetBase.Comments الخاصية

يحصل Microsoft.Office.Interop.Excel.Commentsمجموعة يمثل الجميع التعليقات الخاصة ورقة عمل.

مساحة الاسم:  Microsoft.Office.Tools.Excel
التجميع:  Microsoft.Office.Tools.Excel.v4.0.Utilities (في Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

بناء الجملة

'إقرار
Public ReadOnly Property Comments As Comments
    Get
public Comments Comments { get; }

قيمة الخاصية

النوع: Microsoft.Office.Interop.Excel.Comments
Microsoft.Office.Interop.Excel.Commentsمجموعة يمثل كافة التعليقات الخاصة ورقة عمل.

أمثلة

يلي تعليمات برمجية يستخدم المثال Commentsخاصية لعرض عدد التعليقات في ورقة عمل الحالي قبل وبعد إضافة تعليق إلى خلية A1.

Th هو المثال هو لتخصيص المستوى مستند.

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

أمن NET Framework.

راجع أيضًَا

المرجع

WorksheetBase الفئة

WorksheetBase الأعضاء

Microsoft.Office.Tools.Excel مساحة الاسم