- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, a very beginners question:
With the following code I try to get all pipes in the document (got the code from the pdf guide that I found - "Revit 2014 API developer guide")
Document document = this.ActiveUIDocument.Document;
FilteredElementCollector collector = new FilteredElementCollector(document);
collector.OfClass(typeof(Autodesk.Revit.DB.Plumbing.Pipe));
Now I'd like to view this data in "collector" to see what it looks like and what I've got, but don't manage to figure it out.
Solved! Go to Solution.