Event fired after a project file has been removed.

Syntax:

AfterRemoveFile(Project As TranslationProject, SourceFileName As String)
Parameters: Project Project containing the project file that will be removed.
SourceFileName Name of the source file that has been removed.

Example:
' in a class module "EventClass"

Dim WithEvents App As Application

Private Sub App_AfterRemoveFile(ByVal Project As TranslationProject, _
	ByVal SourceFileName As String)
 
[...]

End Sub

' in a module

Public EventManager As New EventClass

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

See also:

Class Application

Last Updated: 03/17/21