Enterprise Architect Add-in Framework Documentation
Called when user makes a selection in the menu. This is your main exit point to the rest of your Add-in

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

Syntax

C#
public virtual void EA_MenuClick(
	Repository Repository,
	string Location,
	string MenuName,
	string ItemName
)
Visual Basic
Public Overridable Sub EA_MenuClick ( _
	Repository As Repository, _
	Location As String, _
	MenuName As String, _
	ItemName As String _
)
Visual C++
public:
virtual void EA_MenuClick(
	Repository^ Repository, 
	String^ Location, 
	String^ MenuName, 
	String^ ItemName
)

Parameters

Repository
Type: Repository
the repository
Location
Type: System..::..String
the location of the menu
MenuName
Type: System..::..String
the name of the menu
ItemName
Type: System..::..String
the name of the selected menu item

See Also