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_OnPreNewGlossaryTerm

EA_OnPreNewGlossaryTerm notifies Add-Ins that a new glossary term is about to be created. It enables Add-Ins to permit or deny creation of the new glossary term.
The notification is provided immediately before the glossary term is created, so that the Add-In can disable addition of the element.

Syntax

Function EA_OnPreNewGlossaryTerm (Repository As EA.Repository, Info As EA.EventProperties) As Boolean
The EA_OnPreNewGlossaryTerm 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

Info

EA.EventProperties
Direction: IN
Description: Contains these EventProperty objects for the glossary term to be created:

  • TermID: A string value corresponding to Term.TermID

  • Term: A string value corresponding to the name of the glossary term being created

  • Meaning: A string value corresponding to meaning of the glossary term being created

EventProperties Class

Return Value


  • Return True to enable addition of the new glossary term to the model

  • Return False to disable addition of the new glossary term

Learn more