Object Model Reference : Classes : E : ExportFilter : Methods : ExportFilter.Finish |
Sub Finish()
Member of ExportFilter
The Finish method completes the export process.
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 |
Copyright 2013 Corel Corporation. All rights reserved.