Revit 2025.3 API
External |
Instructing Revit to raise (signal) the external event.
Namespace: Autodesk.Revit.UI
Assembly: RevitAPIUI (in RevitAPIUI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public ExternalEventRequest Raise()
Public Function Raise As ExternalEventRequest
public: ExternalEventRequest Raise()
member Raise : unit -> ExternalEventRequest
Return Value
ExternalEventRequestThe result of event raising request. If the request is 'Accepted', the event would be added to the event queue and its handler will be executed in the next event-processing cycle.

Revit will wait until it is ready to process the event and then
it will execute its event handler by calling the Execute method.
Revit processes external events only when no other commands or
edit modes are currently active in Revit, which is the same policy
like the one that applies to evoking external commands.
See Also