TextOutOnPage

Top  Previous  Next

 

Call this function to output HTML formatted string on the page range specified. Pass the html formatted string as input.

Also provide the page range and location for placing the HTML string on the PDF document.

 

 

Syntax

[VC++]

void TextOutOnPage(LPCTSTR HTMLStr, LPCTSTR PageRange, double XPos, double YPos);

 

[CS]

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

 

[VB]

Sub TextOutOnPage(HTMLStr As String, PageRange 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.

 

       PageRange

             Range of pages  on to which string is to be written.

 

 

See Tutorial-HTMLFormattedText