RemoveReferences Method


Removes the provided list of references from the tag's list of references.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 23.0.0.0 (23.1.0.0)
Since: 2022

Syntax

C#
public void RemoveReferences(
	IList<Reference> referencesToRemove
)
Visual Basic
Public Sub RemoveReferences ( _
	referencesToRemove As IList(Of Reference) _
)
Visual C++
public:
void RemoveReferences(
	IList<Reference^>^ referencesToRemove
)

Parameters

referencesToRemove
Type: System.Collections.Generic IList Reference
References to be removed from tag.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentException The operation failed. Please verify that the references are all tagged before removing them.
Autodesk.Revit.Exceptions ArgumentNullException A non-optional argument was null

See Also