DbComment.Delete(方法)
说明
删除记录
语法
表达式.Delete()
表达式:DbComment
参数
参数名 | 是否必需 | 类型 | 描述 |
---|
返回值
boolean
jsApi 示例
javascript
async function example() {
await instance.ready();
const app = instance.Application;
const recordComment = await app.ActiveView.RecordComments.Item(1)
const count = recordComment.Count
for (let i = 1; i <= count; i++) {
const comment = await recordComment.Item(i)
await comment.Delete()
}
}
脚本编辑器 示例
javascript
function main() {
const recordComment = ActiveView.RecordComments(1)
const count = recordComment.Count
for (let i = 1; i <= count; i++) {
const comment = recordComment.Item(i)
comment.Delete()
}
}
main()