Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to get the "N/S", "E/W", "Elev" and "Angle to True North" parameters from a PBP in a linked model. I'm using RevitPythonShell. The problem is I can only access to this parameters:
- Edited by
- Type Name
- Family Name
- Workset
- Category
- Design Option
What could be the reason?
app = doc.Application
docs = app.Documents
for d in docs:
if d.Title != doc.Title:
l_doc = d
break
collector = FilteredElementCollector(l_doc);
points = collector.OfClass(BasePoint)
for p in points:
if not p.IsShared:
pbp = p
break
for p in pbp.Parameters:
print(p.Definition.Name)
Solved! Go to Solution.