EA_OnPostNewPackage
Details
EA_OnPostNewPackage notifies Add-Ins that a new package has been created on a diagram. It enables Add-Ins to modify the package upon creation.
This event occurs when a user drags a new package from the Enterprise Architect UML Toolbox or Resources window onto a diagram, or by selecting the New Package icon from the Project Browser. Set Repository.SuppressEADialogs to true to suppress Enterprise Architect from showing its default dialogs.
Also look at EA_OnPreNewPackage.
Syntax
Function EA_OnPostNewPackage(Repository As EA.Repository, Info As EA.EventProperties) As Boolean
The EA_OnPostNewPackage function syntax contains the following elements:
Parameter |
Type |
Direction |
Description |
Info |
IN |
Contains the following EventProperty objects for the new package:
|
|
Repository |
IN |
An EA.Repository object representing the currently open Enterprise Architect model. Poll its members to retrieve model data and user interface status information. |
Return Value
Return True if the package has been updated during this notification. Return False otherwise.