www.gnostice.com 

EndDoc Method

Top  Previous  Next

The EndDoc method is invoked to end document creation

 

 

 

 

Syntax

 

 

[VC++]

void EndDoc();

 

[C#]

public abstract new void EndDoc (  )

 

[VB]

Sub EndDoc()

 

 

 

 

Example Code

 

 

[VC++]

m_Engine.SetFileName("Sample");

m_Engine.BeginDoc();

m_Engine.TextOutXY(1, 1, "Gnostice eDocEngine ActiveX");

m_Engine.EndDoc();        

 

 

 

[VB]

With gtEngineX1

       .FileName = "Sample"

       .BeginDoc       

       .TextOutXY 1, 1, "Gnostice eDocEngine ActiveX"       

       .EndDoc

End With

 

[C#]

 

       axgtPDFEngineX1.FileName = "Sample"; 

       axgtPDFEngineX1.BeginDoc(); 

       axgtPDFEngineX1.TextOutXY( 1, 1, "Gnostice eDocEngine ActiveX" );

       axgtPDFEngineX1.EndDoc();