EA_OnPostNewConnector

Return to Introduction  Previous page  Next page

EA_OnPostNewConnector notifies Add-Ins that a new connector has been created on a diagram. It enables Add-Ins to modify the connector upon creation.

 

Syntax

 

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

 

The EA_OnPostNewConnector function syntax contains the following elements

 

 

Parameter

Type

Direction

Description

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.

Info

EA.EventProperties

IN

Contains the following EventProperty Objects for the new connector:

 

·ConnectorID : A long value corresponding to Connector.ConnectorID

 

 

Return Value

 

Return True if the connector has been updated during this notification. Return False otherwise.

 

Details

 

This event occurs after a user has dragged a new connector from the UML toolbox or Resource Tree, onto a diagram. The notification is provided immediately after the connector is added to the model. Set Repository.SuppressEADialogs = true to suppress Enterprise Architect from showing its default dialogs.

See Also