Skip to content

AddComment (方法)

为区域添加批注。

参数

属性数据类型必填说明
Textany可选批注文字。

返回值

Comment

示例

javascript
/*本示例为第一张工作表中 E5 单元格添加批注。*/
function test() {
    Worksheets.Item(1).Range("E5").AddComment("Current Sales")
}
javascript
/*本示例为 A1 单元格添加批注 a1*/
function test() {
    Application.Cells.Item(1, 1).AddComment("a1")
}