2021 Class
Changes 0
C

UpdaterData

Description:
Service class that is passed to an Updater to prove access to update execution context
Inheritance Hierarchy:
System.Object
  Autodesk.Revit.DB.UpdaterData
public class UpdaterData : IDisposable
Name Return Type Description
M Dispose() None Releases all resources used by the
M GetAddedElementIds() ICollection<ElementId> Returns set of elements newly added to the document. This set is mutually exclusive of elements returned by getDeletedElementIds() and getModifiedElementIds().
M GetDeletedElementIds() ICollection<ElementId> Returns set of elements that were deleted from the document. This set is mutually exclusive of elements returned by getAddedElementIds() and getModifiedElementIds().
M GetDocument() Document Returns document associated with this UpdaterData
M GetModifiedElementIds() ICollection<ElementId> Returns set of elements that were modified. This set is mutually exclusive of elements returned by getAddedElementIds() and getDeletedElementIds().
M IsChangeTriggered(ElementId, ChangeType) bool Allows updater to check if specific change has happened to an element. Compares input type to the types that caused Updater::execute() to be triggered.
Name Return Type Description
P IsValidObject bool Specifies whether the .NET object represents a valid Revit entity.