Enterprise Architect Add-in Framework Documentation
EA_OnPostTransform notifies Add-Ins that an MDG transformation has taken place with the output in the specified target package. This event occurs when a user runs an MDG transform on one or more target packages. The notification is provided for each transform/target package immediately after all transform processes have completed.

Namespace: EAAddinFramework
Assembly: EAAddinFramework (in EAAddinFramework.dll) Version: 1.0.4064.9398

Syntax

C#
public virtual bool EA_OnPostTransform(
	Repository Repository,
	EventProperties Info
)
Visual Basic
Public Overridable Function EA_OnPostTransform ( _
	Repository As Repository, _
	Info As EventProperties _
) As Boolean
Visual C++
public:
virtual bool EA_OnPostTransform(
	Repository^ Repository, 
	EventProperties^ Info
)

Parameters

Repository
Type: Repository
An EA.Repository object representing the currently open Enterprise Architect model. Poll its members to retrieve model data and user interface status information.
Info
Type: EventProperties
Contains the following EventProperty objects for the transform performed: - Transform: A string value corresponding to the name of the transform used - PackageID: A long value corresponding to Package.PackageID of the destination package.

Return Value

Reserved for future use.

See Also