Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How to hide the Text with text type "2.5mm Arial" in the current view using revit api command?
Here is my sample code in python
temp =[]
fec = FilteredElementCollector(doc).OfClass(TextNoteType)#.ToElements()
ElementIDS = fec.ToElementIds()
for i in fec:
name = i.LookupParameter("Type Name").AsString()
if name == "2.5mm Arial":
temp.append(name)
Solved! Go to Solution.