欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

foreach(Element elem in selections.Elements)无法实现

程序员文章站 2022-12-15 17:16:51
因为版本问题 原:foreach(Element elem in selections.Elements){ } 现: ElementSet selections = new ElementSet(); foreach (ElementId elementId in commandData.Appl ......

因为版本问题

原:
foreach(element elem in selections.elements)
{

}


现:
elementset selections = new elementset();
foreach (elementid elementid in commanddata.application.activeuidocument.selection.getelementids())

{

selections.insert(commanddata.application.activeuidocument.document.getelement(elementid));

}
foreach (element elem in selections)

{



}