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

TextLinkRun (对象)

说明

TextLinkRun代表文本链接的对象。

方法

属性

浏览器环境示例

javascript
async function example() {
   await instance.ready();
   const app = instance.Application;
   const recordComment = await app.ActiveView.RecordComments.Item(1)
   recordComment.Add("Hello World")
   const count = await recordComment.Count
   for (let i = 1; i <= count; i++) { 
    const comment = await recordComment.Item(i)
    const textLinkRuns = await comment.TextLinkRuns
    const linkCount =  await textLinkRuns.Count
    for (let j = 1; j <= linkCount; j++) {
     const textLinkRun = await textLinkRuns.Item(j)
     console.log(await textLinkRun.Address)
    }
   }
}

脚本编辑器 示例

javascript
function main() {
   const recordComment = ActiveView.RecordComments.Item(1)
   recordComment.Add("Hello World")
   const count = recordComment.Count
   for (let i = 1; i <= count; i++) { 
    const comment = recordComment.Item(i)
    const textLinkRuns = comment.TextLinkRuns
    console.log(textLinkRuns.Count)
   }
}
main()
回到旧版