共用方式為


XmlMappedRange.AddComment 方法

XmlMappedRange 控制項中加入註解。

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

語法

'宣告
Function AddComment ( _
    Text As Object _
) As Comment
Comment AddComment(
    Object Text
)

參數

傳回值

型別:Microsoft.Office.Interop.Excel.Comment
加入 XmlMappedRange 控制項中的註解。

備註

選擇性參數

如需選擇性參數的詳細資訊,請參閱Office 方案中的選擇性參數

範例

下列程式碼範例使用 AddComment 方法,將註解加入到名為 CustomerLastNameCell 的 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 命名空間