Components for Developers
© 2000-2008, Two Pilots

PDF Library Download Features Manual Tutorials FAQ Pricing HTML2PDF Add-on History In the Lab

PDF Creator Pilot documentation

Download CHM version of this manual.
Common
Collapse All

Clears all internal data and stops the generation of the PDF document.

Syntax

HRESULT Clear ()
Return value
If successful, this method returns S_OK. If it fails, this method should return one of the error values.

Example

Aborting PDF file creation

Delphi
[copy to clipboard]
{ PDF object is supposed to be created }
{ some methods call e.t.c. }
{ let variable 'errorOccured' contains value indicating if error occured }

if errorOccured then
   PDF.Clear
else
   PDF.SaveToFile("test.pdf", true);
C/C++
[copy to clipboard]
// PDF object is supposed to be created
// some methods call e.t.c.
// let variable 'errorOccured' contains value indicating if error occured

if (errorOccured)
   PDF->Clear();
else
   PDF->SaveToFile("test.pdf", true);
C#
[copy to clipboard]
// PDF object is supposed to be created
// some methods call e.t.c.
// let variable 'errorOccured' contains value indicating if error occured

if (errorOccured)
   PDF.Clear();
else
   PDF.SaveToFile("test.pdf", true);
Visual Basic
[copy to clipboard]
' PDF object is supposed to be created
'some methods call e.t.c.
' let variable 'errorOccured' contains value indicating if error occured

if errorOccured Then
   PDF.Clear
else
   PDF.SaveToFile "test.pdf", true
end if
Set PDF = nothing

See Also

PDF Library Download Features Manual Tutorials FAQ Pricing HTML2PDF Add-on History In the Lab

 

 

PDF Library | Virtual Printer | Converters to PDF

Support | Blog | Forum | Contacts

© 2000-2008, Two Pilots