Revit 2017 API |
ElementMulticlassFilter Constructor (IList<(Of <(<'Type>)>)>, Boolean) |
ElementMulticlassFilter Class See Also |
Constructs a filter using multiple types
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 17.0.0.0 (17.0.484.0)
Since:
2012
Syntax
C# |
---|
public ElementMulticlassFilter( IList<Type> typeList, bool inverted ) |
Visual Basic |
---|
Public Sub New ( _ typeList As IList(Of Type), _ inverted As Boolean _ ) |
Visual C++ |
---|
public: ElementMulticlassFilter( IList<Type^>^ typeList, bool inverted ) |
Parameters
- typeList
- Type: System.Collections.Generic..::..IList<(Of <(<'Type>)>)>
The list of types to match
- inverted
- Type: System..::..Boolean
True if the filter should match all elements which are not of the given class.
Exceptions
Exception | Condition |
---|---|
Autodesk.Revit.Exceptions..::..ArgumentException | One or more input types are not subclasses of Element. -or- One or more of the types do not exist in Revit's native object model. |
Autodesk.Revit.Exceptions..::..ArgumentNullException | A non-optional argument was NULL |