Enterprise Architect Add-in Framework Documentation
MDG_GetConnectedPackages enables the Add-In to return a list of current connection between Enterprise Architect and an external application. This function is called when the Add-In is first loaded, and is expected to return a list of the available connections to external projects for this Add-In. Also look at MDG_Connect

Namespace: EAAddinFramework
Assembly: EAAddinFramework (in EAAddinFramework.dll) Version: 1.0.4064.9398

Syntax

C#
public virtual Object MDG_GetConnectedPackages(
	Repository Repository
)
Visual Basic
Public Overridable Function MDG_GetConnectedPackages ( _
	Repository As Repository _
) As Object
Visual C++
public:
virtual Object^ MDG_GetConnectedPackages(
	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.

Return Value

Returns an array of GUID strings representing individual Enterprise Architect packages.

See Also