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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。