Event fired when items are exported to a dictionary.

Syntax:

OnExportTranslationUnits(FileType As String, Filename As String, 
TransUnitsToExportArray As Variant, TransUnitsExportedArray As ReturnArray)
Parameters: FileType Type of the file on which the dictionary is based.
FileName Name of the file on which the dictionary is based.
TransUnitsToExportArray Array where the "TransUnit" objects that have to be exported are stored.
TransUnitsExportedArray Array where the "TransUnit" objects that have been exported should be stored. The array is encapsulated in the "ReturnArray" object.

Example:
' in a class module "EventClass"

Dim WithEvents App As Application

Private Sub App_OnExportTranslationUnits(ByVal FileType As String, 
ByVal Filename As String, TransUnitsToExportArray As Variant, 
ByVal TransUnitsExportedArray As ReturnArray)
 
[...]

End Sub

' in a module

Public EventManager As New EventClass

Sub TestMacro()
	Set EventManager.App = Application
End Sub

See also:

Class Application

Last Updated: 04/26/05