Get layout names

How to get layout names

Issue: How to get layout names.

Tips: To get layout names, it is needed to use CadLayoutDictionary class in image.

Example:

CadLayoutDictionary layouts =((CadImage)cadImage).Layouts;
string[] layoutNames = new string[layouts.Count];
int i = 0;
foreach (CadLayout layout in layouts.Values)
{
layoutNames[i++] = layout.LayoutName;
}