" from Autodesk.Revit.DB import FilteredElementCollector as Fec
from Autodesk.Revit.DB import BuiltInCategory as Bic
doors = Fec(doc).OfCategory(Bic.OST_Doors).\
WhereElementIsNotElementType().ToElements()
print(doors)
for door in
doors:
print(15*"-")
print(door.Id)
print(door.Location.Point) ".
Now i,m curious how I can get these coordinates JUST BY CLICKING on a door in Revit?
any help?
regards!
ILYAS ( my whatsApp: +6590564435)