编辑对象上的超链接
Contents
[
Hide
]如何编辑对象上的超链接
问题: 如何编辑对象上的超链接 (CADNET-23)。
提示: 为此,请在实体中使用超链接字段。
示例:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach (CadBaseEntity entity in cadImage.Entities) | |
{ | |
if (entity.Hyperlink == "https://products.aspose.com") | |
{ | |
entity.Hyperlink = "https://www.aspose.com"; | |
} | |
} |