Syntax:
Sub Finish()
Remarks:
The Finish method completes the export process.
Examples:
The following VBA example creates a document and an ellipse and exports the document to JPEG.
Sub Test()
Dim ex As ExportFilter
Dim d As Document
Set d = CreateDocument
d.ActiveLayer.CreateEllipse2 4, 4, 1
Set ex = d.ExportEx("c:\test.jpg", cdrJPEG)
ex.Finish 
End Sub