Please note : This help page is not for the latest version of Enterprise Architect. The latest help can be found here.
EA_OnConnectorTagEdit
Topics
Topic |
Detail |
See also |
---|---|---|
Details |
EA_OnConnectorTagEdit is called when the user clicks the ellipsis ( ... ) button for a Tagged Value of type AddinBroadcast on a connector. The Add-In displays fields to show and change the value and notes; this function provides the initial values for the Tagged Value notes and value, and takes on any changes on exit of the function. |
|
Syntax
Sub EA_OnConnectorTagEdit(Repository As EA.Repository, ConnectorID As Long, String TagName, String TagValue, String TagNotes)
The EA_OnConnectorTagEdit function syntax contains the following elements:
Parameter |
Type |
Direction |
Description |
---|---|---|---|
ConnectorID |
Long |
IN |
The ID of the connector that this Tagged Value is on.
|
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.
|
|
TagName |
String |
IN |
The name of the Tagged Value to edit.
|
TagNotes |
String |
INOUT |
The current value of the Tagged Value notes; if the value is updated, the new value is stored in the repository on exit of the function.
|
TagValue |
String |
INOUT |
The current value of the tag; if the value is updated, the new value is stored in the repository on exit of the function.
|