EA_FileClose

Return to Introduction  Previous page  Next page

The EA_FileClose enables the Add-In to respond to a File Close event. When Enterprise Architect closes an opened Model file, this event is raised and passed to all Add-Ins implementing this method.

 

Syntax

 

Sub EA_FileClose(Repository As EA.Repository)

 

The EA_FileClose function syntax contains the following elements

 

 

Parameter

Type

Direction

Description

Repository

EA.Repository

 

IN

An EA.Repository object representing the Enterprise Architect model about to be closed. Poll its members to retrieve model data and user interface status information.

 

Return Value

 

None

 

Details

 

This event occurs when the model currently opened within Enterprise Architect is about to be closed (when another model is about to be opened or when Enterprise Architect is about to shutdown).

See Also