Reputation: 5845
Using the Revit API how can I determine if the wall intersection(join) type is a mitered join or a butt join.
Where it is a butt-join, how can I determine which wall is the butted-up one?
Can I programmatically change the intersection type and how might I do this using the Revit API?
Upvotes: 0
Views: 402
Reputation: 1096
On the wall object, there is a LocationCurve property. On the LocationCurve object, you will find two relevant properties:
the JoinType is changeable.
Upvotes: 2