객체의 하이퍼링크 편집
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"; | |
} | |
} |