레이아웃 이름 가져오기
Contents
[
Hide
]레이아웃 이름 가져오는 방법
문제: 레이아웃 이름을 가져오는 방법.
팁: 레이아웃 이름을 가져오려면 이미지의 CadLayoutDictionary 클래스를 사용해야 합니다.
예제:
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
CadLayoutDictionary layouts =((CadImage)cadImage).Layouts; | |
string[] layoutNames = new string[layouts.Count]; | |
int i = 0; | |
foreach (CadLayout layout in layouts.Values) | |
{ | |
layoutNames[i++] = layout.LayoutName; | |
} |