TextOut

Top  Previous  Next

 

Call this function to output HTML formatted string in PDF file. Pass the html formatted string as input and coordinates for placing the HTML string on all pages in the PDF document.

 

 

Syntax

[VC++]

void TextOut(LPCTSTR HTMLStr, double XPos, double YPos);

 

[CS]

public abstract new void TextOut (  String HTMLStr ,  Double XPos ,  Double YPos )

 

[VB]

Sub TextOut(HTMLStr As String, XPos As Double, YPos As Double)

 

 

Parameters

       

       HTMLStr

            Specifies the html formatted string to be written.

       

       XPos

           Specifies the X coordinate of the location where the string is to be written.

       

       YPos

           Specifies the Y coordinate of the location where the string is to be written.

 

 

See Tutorial-HTMLFormattedText