Enterprise Architect Add-in Framework Documentation 
            EA_OnOutputItemDoubleClicked events informs Add-Ins that the user has used the mouse to double-click on a list entry in one of the user-defined output tabs.
            Usually an Add-In responds to this event in order to capture activity on an output tab they had previously created through a call to Repository.AddTab().
            Note that every loaded Add-In receives this event for every double-click on an output tab in Enterprise Architect - irrespective of whether the Add-In created that tab. Add-Ins should therefore check the TabName parameter supplied by this event to ensure that they are not responding to other Add-Ins' events.
            Also look at EA_OnOutputItemClicked.
            
Namespace: EAAddinFrameworkAssembly: EAAddinFramework (in EAAddinFramework.dll) Version: 1.0.4064.9398
Syntax
| C# | 
|---|
public virtual void EA_OnOutputItemDoubleClicked(
	Repository Repository,
	string TabName,
	string LineText,
	long ID
)  | 
| Visual Basic | 
|---|
Public Overridable Sub EA_OnOutputItemDoubleClicked ( _
	Repository As Repository, _
	TabName As String, _
	LineText As String, _
	ID As Long _
)  | 
| Visual C++ | 
|---|
public:
virtual void EA_OnOutputItemDoubleClicked(
	Repository^ Repository, 
	String^ TabName, 
	String^ LineText, 
	long long ID
)  | 
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. 
- TabName
 - Type: System..::..String
The name of the tab that the click occurred in. 
            Usually this would have been created through Repository.AddTab(). 
- LineText
 - Type: System..::..String
The text that had been supplied as the String parameter in the original call to Repository.WriteOutput(). 
- ID
 - Type: System..::..Int64
The ID value specified in the original call to Repository.WriteOutput(). 
See Also