ReferenceIntersector Constructor (ElementId, FindReferenceTarget, View3D)
Constructs a ReferenceIntersector which is set to return intersections from a single target element only.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 16.0.0.0 (16.0.0.0)
Since:  2013

Syntax

C#
public ReferenceIntersector(
	ElementId targetElementId,
	FindReferenceTarget targetType,
	View3D view3d
)
Visual Basic
Public Sub New ( _
	targetElementId As ElementId, _
	targetType As FindReferenceTarget, _
	view3d As View3D _
)
Visual C++
public:
ReferenceIntersector(
	ElementId^ targetElementId, 
	FindReferenceTarget targetType, 
	View3D^ view3d
)

Parameters

targetElementId
Type: Autodesk.Revit.DB..::..ElementId
The target element id.
targetType
Type: Autodesk.Revit.DB..::..FindReferenceTarget
The target type of references to return.
view3d
Type: Autodesk.Revit.DB..::..View3D
The view in which to find references.

Exceptions

ExceptionCondition
Autodesk.Revit.Exceptions..::..ArgumentException View cannot be a template view.
Autodesk.Revit.Exceptions..::..ArgumentNullException A non-optional argument was NULL
Autodesk.Revit.Exceptions..::..ArgumentOutOfRangeException A value passed for an enumeration argument is not a member of that enumeration

See Also