Please note : This help page is not for the latest version of Enterprise Architect. The latest help can be found here.

EA_OnPreNewGlossaryTerm

Topics

Topic

Detail

See also

Details

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.

 

EA_OnPostNewGlossaryTerm

Syntax:

Function EA_OnPreNewGlossaryTerm(Repository As EA.Repository, Info As EA.EventProperties) As Boolean

The EA_OnPreNewGlossaryTerm function syntax contains the following elements:

Parameter

Type

Direction

Description

Info

EA.EventProperties

IN

Contains the following EventProperty object 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
 

Repository

EA.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.

 

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.