Enterprise Architect Add-in Framework Documentation
MDG_RunExe enables the Add-In to run the target application. This function is called when the user selects the Add-Ins | Run Exe menu option. Respond to this event by launching the compiled application. Also look at MDG_BuildProject.

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

Syntax

C#
public virtual void MDG_RunExe(
	Repository Repository,
	string PackageGuid
)
Visual Basic
Public Overridable Sub MDG_RunExe ( _
	Repository As Repository, _
	PackageGuid As String _
)
Visual C++
public:
virtual void MDG_RunExe(
	Repository^ Repository, 
	String^ PackageGuid
)

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.
PackageGuid
Type: System..::..String
The GUID identifying the Enterprise Architect package sub-tree that is controlled by the Add-In.

See Also