Message 1 of 10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi All,
I am creating a wall and rotating it using revit api calls in Python. It has created many walls successfully, but for a few walls, it raised a warning saying Element is reversed and I have no choice but to delete it. Before committing the transaction, is there a way to check if the element is reversed? Or what is causing this error....!?
I have a 'Wall_Data" class, which has various properties of the wall and there is a method to create the wall instance.
I create the wall like this;
wall = Wall.Create(doc, self.curve, self.wall_type.Id, self.base_level.Id, self.height, self.wall_offset, False, False)
Any idea how to fix this?
Solved! Go to Solution.