Réserver une Démo
Pré. Proc.

EA_OnConnectorTagEdit

EA_OnConnectorTagEdit is called when the user clicks the Browse. 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 these parameters.

Parameter

Type

See also

Repository

EA.Repository

Direction: IN

Description: An EA.Repository object representing the currently open Enterprise Architect model.

Poll its members to retrieve model data and user interface status information.

Repository Class

ConnectorID

Long

Direction: IN

Description: The ID of the connector that this Tagged Value is on.

TagName

String

Direction: IN

Description: The name of the Tagged Value to edit.

TagValue

String

Direction: INOUT

Description: The current value of the tag; if the value is updated, the new value is stored in the repository on exit of the function.

TagNotes

String

Direction: INOUT

Description: 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.

Learn more