FailuresAccessor.DeleteElements Method

FailuresAccessorDeleteElements Method

Resolves failures by deletion of elements related to the failures.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntax
public void DeleteElements(
	IList<ElementId> idsToDelete
)
Public Sub DeleteElements ( 
	idsToDelete As IList(Of ElementId)
)
public:
void DeleteElements(
	IList<ElementId^>^ idsToDelete
)
member DeleteElements : 
        idsToDelete : IList<ElementId> -> unit 

Parameters

idsToDelete  IListElementId
Ids of elements to be deleted.
Exceptions
ExceptionCondition
ArgumentException Resolution of the failures by deleting idsToDelete is not permitted
ArgumentNullException A non-optional argument was null
InvalidOperationException This FailuresAccessor is inactive (is used outside of failures processing).
See Also