PPT_LOGO_4b
Revit Programming Introduction <#>
Copyright © 2009 Autodesk Inc.
壁を取得
»public static List<Element> GetAllWalls( Application app )
»{
»  List<Element> elements = new List<Element>();
»  Filter filterType = app.Create.Filter.NewTypeFilter( typeof( Wall ) );
»  app.ActiveDocument.get_Elements( filterType, elements );
»  return elements;
»}
要素コレクション
Labs2_3_01.png
壁の取得例です。