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
)
參數
- Text
型別:System.Object
註解文字。
傳回值
型別: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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。