I'm a little confused about how you get access to Revit's element data, such as an element's parameters, location, Id, etc.. If I have this code:
collector = FilteredElementCollector(doc)
collector.OfCategory(BuiltInCategory.OST_Walls)
walls = collector.OfClass(FamilySymbol)
return walls
It will print: Autodesk.Revit.DB.FilteredElementCollector object at 0x0000000000000038 [Auto...]. Where do I go from here? For instance, How do I get a return of the walls' location?
There might be a lot in here, and multiple steps for each item. I am mainly looking for a general concept of getting and/or setting new element data.
Any thoughts?