Réserver une Démo

SVP notez : Cette page d’aide n’est pas pour la dernière version d’Enterprise Architect. La dernière aide peut être trouvée ici.

Pré. Proc.

EA_OnAttributeTagEdit

EA_OnAttributeTagEdit is called when the user clicks the Browse. button for a Tagged Value of type AddinBroadcast on an attribute.
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_OnAttributeTagEdit (Repository As EA.Repository, AttributeID As Long, String TagName, String TagValue, String TagNotes)
The EA_OnAttributeTagEdit 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

AttributeID

Long
Direction: IN
Description: The ID of the attribute 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