2021 Class
Changes 5
C

FilteredElementCollector

Description:
This class is used to search, filter and iterate through a set of elements.
Remarks:

Developers can assign a variety of conditions to filter the elements that are returned. This class requires that at least one condition be set before making the attempt to access the elements.

Revit will attempt to organize the filters in order to minimize expansion of elements regardless of the order in which conditions and filters are applied.

There are three groups of methods that you can use on a given collector once you have applied filter(s) to it. One group provides collections of all passing elements, a second finds the first match of the given filter(s), and a third provides an iterator that is evaluated lazily (each element is tested by the filter only when the iterator reaches it). You should only use one of the methods from these group at a time; the collector will reset if you call another method to extract elements. Thus, if you have previously obtained an iterator, it will be stopped and traverse no more elements if you call another method to extract elements.

In .NET, this class supports the IEnumerable interface for Elements. You can use this class with LINQ queries and operations to process lists of elements. Note that because the ElementFilters and the shortcut methods offered by this class process elements in native code before their managed wrappers are generated, better performance will be obtained by using as many native filters as possible on the collector before attempting to process the results using LINQ queries.

One special consideration when using this class in .NET: the debugger will attempt to traverse the members of the collector because of its implementation of IEnumerable. You may see strange results if you also attempt to extract the first element or all elements from the collector while the debugger is also looking at the contents of the collector.

Inheritance Hierarchy:
System.Object
  Autodesk.Revit.DB.FilteredElementCollector
public class FilteredElementCollector : IEnumerable<Element>, 
	IDisposable
Name Return Type Description
C FilteredElementCollector(Document) None Constructs a new FilteredElementCollector that will search and filter the set of elements in a document.
C FilteredElementCollector(Document, ElementId) None Constructs a new FilteredElementCollector that will search and filter the visible elements in a view.
C FilteredElementCollector(Document, ICollection<ElementId>) None Constructs a new FilteredElementCollector that will search and filter a specified set of elements.
Name Return Type Description
M ContainedInDesignOption(ElementId) FilteredElementCollector Applies an ElementDesignOptionFilter to the collector.
M Dispose() None Releases all resources used by the
M Excluding(ICollection<ElementId>) FilteredElementCollector Applies an ExclusionFilter to the collector.
M FirstElementId() ElementId Returns the id of the first element to pass the filter(s).
M FirstElement() The first element. Returns the first element to pass the filter(s).
M GetBasicIEnumerator() IEnumerator Returns an enumerator that iterates through a collection.
M GetElementCount() int Gets the number of elements in your current filter.
M GetElementIdIterator() FilteredElementIdIterator Returns an element id iterator to the elements passing the filters.
M GetElementIterator() FilteredElementIterator Returns an element iterator to the elements passing the filters.
M GetEnumerator() IEnumerator<Element> Returns an enumerator that iterates through a collection.
M IntersectWith(FilteredElementCollector) FilteredElementCollector Intersects the set of elements passing the filter in this collector with the set of elements passing the filter in another collector.
M IsViewValidForElementIteration(Document, ElementId) bool Identifies if the particular element is valid for iteration of drawn elements.
M OfCategoryId(ElementId) FilteredElementCollector Applies an ElementCategoryFilter to the collector.
M OfCategory(BuiltInCategory) This collector. Applies an ElementCategoryFilter to the collector.
M OfClass(Type) FilteredElementCollector Applies an ElementClassFilter to the collector.
M OwnedByView(ElementId) FilteredElementCollector Applies an ElementOwnerViewFilter to the collector.
M ToElementIds() ICollection<ElementId> Returns the complete set of element ids that pass the filter(s).
M ToElements() IList<Element> Returns the complete set of elements that pass the filter(s).
M UnionWith(FilteredElementCollector) FilteredElementCollector Unites the set of elements passing the filter in this collector with the set of elements passing the filter in another collector.
M WhereElementIsCurveDriven() FilteredElementCollector Applies an ElementIsCurveDrivenFilter to the collector.
M WhereElementIsElementType() FilteredElementCollector Applies an ElementIsElementTypeFilter to the collector.
M WhereElementIsNotElementType() FilteredElementCollector Applies an inverted ElementIsElementTypeFilter to the collector.
M WhereElementIsViewIndependent() FilteredElementCollector Applies an ElementOwnerViewFilter to the collector.
M WherePasses(ElementFilter) FilteredElementCollector Applies an element filter to the collector.
Name Return Type Description
P IsValidObject bool Specifies whether the .NET object represents a valid Revit entity.