Enterprise Architect Add-in Framework Documentation
The EA_FileNew event enables the Add-In to respond to a File New event. When Enterprise Architect creates a new model file, this event is raised and passed to all Add-Ins implementing this method.
The event occurs when the model being viewed by the Enterprise Architect user changes, for whatever reason (through user interaction or Add-In activity).
Also look at EA_FileClose and EA_FileOpen.
Namespace: EAAddinFrameworkAssembly: EAAddinFramework (in EAAddinFramework.dll) Version: 1.0.4064.9398
Syntax
| C# |
|---|
public virtual void EA_FileNew(
Repository Repository
) |
| Visual Basic |
|---|
Public Overridable Sub EA_FileNew ( _
Repository As Repository _
) |
| Visual C++ |
|---|
public:
virtual void EA_FileNew(
Repository^ Repository
) |
Parameters
- Repository
- Type: Repository
An EA.Repository object representing the currently open Enterprise Architect model.
Poll its members to retrieve model data and user interface status information.
See Also