UpdaterData
Description:
Service class that is passed to an Updater to prove access to update execution context
Service class that is passed to an Updater to prove access to update execution context
Inheritance Hierarchy:
System.Object
Autodesk.Revit.DB.UpdaterData
System.Object
Autodesk.Revit.DB.UpdaterData
public class UpdaterData : IDisposable
| Name | Return Type | Description |
|---|---|---|
| Dispose() | None | Releases all resources used by the |
| GetAddedElementIds() | ICollection<ElementId> | Returns set of elements newly added to the document. This set is mutually exclusive of elements returned by getDeletedElementIds() and getModifiedElementIds(). |
| 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(). |
| GetDocument() | Document | Returns document associated with this UpdaterData |
| GetModifiedElementIds() | ICollection<ElementId> | Returns set of elements that were modified. This set is mutually exclusive of elements returned by getAddedElementIds() and getDeletedElementIds(). |
| 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 |
|---|---|---|
| IsValidObject | bool | Specifies whether the .NET object represents a valid Revit entity. |