Message 1 of 3
Add Panels in CurtainWall

Not applicable
04-13-2016
05:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi Revit,
I create a curtainWall (defined in Revit family) via API in this way:
Wall wall= Wall.Create(doc, line, levelBottomId, false);
wall.WallType = newWallType;
if (wall.WallType.Kind == WallKind.Curtain)
{
//how to split it in panels?
CurtainGrid grid= wall.CurtainGrid;
grid.AddGridLine(false, point, false);
}
I want to split the wall in some panels. is it right? how to complete the command?
Regards,
Bruno