OnFinishProcess()

Description

OnFinishProcess is called after the last input record is processed. Implement this method if you want to customize the final actions after the conversion process is done.

Syntax

Function OnFinishProcess()

Parameters

none

Return value

none

Example

This uses VBScript to close the text file created in the previous sample (OnStartProcess)

Function OnFinishProcess

file.WriteLine( "Process Ended" )

file.Close()

End Function

See also

TextConverter's Context Methods

OnRecord()

OnStartProcess()

OnSetUp()