共用方式為


XmlMappedRange.Comment 屬性

取得 Comment,表示 XmlMappedRange 控制項左上角儲存格的相關註解。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
ReadOnly Property Comment As Comment
Comment Comment { get; }

屬性值

型別:Microsoft.Office.Interop.Excel.Comment
Comment 表示 XmlMappedRange 控制項左上角儲存格的相關註解。

範例

下列程式碼範例使用 AddComment 方法將註解加入到 XmlMappedRange,然後使用 Comment 屬性變更註解文字。 這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange

Private Sub AddComment()
    Me.CustomerLastNameCell.AddComment("Text to be replaced.")
    Me.CustomerLastNameCell.Comment.Text( _
        "This range contains customer last names.")
End Sub
private void AddComment()
{
    this.CustomerLastNameCell.AddComment("Text to be replaced.");
    this.CustomerLastNameCell.Comment.Text(
        "This range contains customer last names.", 
        missing, missing);
}

.NET Framework 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間