Revit 2023 API |
VisibleInViewFilter Constructor (Document, ElementId, Boolean) |
VisibleInViewFilter Class See Also |
Constructs a new instance of a VisibleInViewFilter, with the option to pass all non-visible elements.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 23.0.0.0 (23.1.0.0)
Since:
2021
Syntax
C# |
---|
public VisibleInViewFilter( Document document, ElementId viewId, bool inverted ) |
Visual Basic |
---|
Public Sub New ( _ document As Document, _ viewId As ElementId, _ inverted As Boolean _ ) |
Visual C++ |
---|
public: VisibleInViewFilter( Document^ document, ElementId^ viewId, bool inverted ) |
Parameters
- document
- Type: Autodesk.Revit.DB..::..Document
The document that owns the view.
- viewId
- Type: Autodesk.Revit.DB..::..ElementId
The view id.
- inverted
- Type: System..::..Boolean
True if the filter should match all elements not visible in the given view.
Exceptions
Exception | Condition |
---|---|
Autodesk.Revit.Exceptions..::..ArgumentException | viewId is not a view. -or- viewId is not valid for element iteration, because it has no way of representing drawn elements. Many view templates will fail this check. |
Autodesk.Revit.Exceptions..::..ArgumentNullException | A non-optional argument was null |