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

TextLinkRun.Length(属性)

说明

只读 返回的文本链接的长度

返回值

Number

浏览器环境示例

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.Length)
    }
   }
}

脚本编辑器 示例

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