Revit 2025.3 API
Updater |
Returns set of elements newly added to the document.
This set is mutually exclusive of elements returned by getDeletedElementIds() and getModifiedElementIds().
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public ICollection<ElementId> GetAddedElementIds()
Public Function GetAddedElementIds As ICollection(Of ElementId)
public: ICollection<ElementId^>^ GetAddedElementIds()
member GetAddedElementIds : unit -> ICollection<ElementId>
Return Value
ICollectionElementIdSet of elements that were added to the document and triggered the call to execute() Note: This will only return elements if the trigger registered for the associated updater contains the ChangeType returned by Element::getChangeTypeElementAddition()
See Also