Revit 2025.3 API
Controlled |
Subscribe to this event to get notified after the Revit application has been initialized.
Namespace: Autodesk.Revit.ApplicationServices
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public event EventHandler<ApplicationInitializedEventArgs> ApplicationInitialized
Public Event ApplicationInitialized As EventHandler(Of ApplicationInitializedEventArgs)
public: event EventHandler<ApplicationInitializedEventArgs^>^ ApplicationInitialized { void add (EventHandler<ApplicationInitializedEventArgs^>^ value); void remove (EventHandler<ApplicationInitializedEventArgs^>^ value); }
member ApplicationInitialized : IEvent<EventHandler<ApplicationInitializedEventArgs>, ApplicationInitializedEventArgs>
Value
EventHandlerApplicationInitializedEventArgs
The event is raised after Revit was launched as fully initialized, including initialization of external applications.
The event is not cancellable; the 'Cancellable' property of the event's argument is always False.
See Also