TextLinkRun.Address(属性)
说明
只读 返回文本链接的地址
返回值
String
浏览器环境示例
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)
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.Address)
}
}
}
main()