Skip to content
开发文档
能力中心
应用市场
WebOffice
开发者后台

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()
回到旧版