Edit of hyperlinks on objects
Contents
[
Hide
]How to edit of hyperlinks on objects
Issue: How to edit of hyperlinks on objects (CADNET-23).
Tips: To do this, use the Hyperlink field in the entities.
Example:
This file contains 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"; | |
} | |
} |