DrawHTMLTextBox
Description
Similar to the DrawHTMLText function, but the text drawn is limited to a specific area. The remaining HTML text is returned, which can be passed to this function again (perhaps on a different page or location) until the function returns an empty string. See Appendix A for details of the supported HTML tags.
Syntax
Delphi
function TQuickPDF0813.DrawHTMLTextBox(Left, Top, Width, Height: Double;
HTMLText: WideString): WideString;
ActiveX
Function QuickPDF0813.PDFLibrary::DrawHTMLTextBox(Left As Double, Top As Double,
Width As Double, Height As Double, HTMLText As String) As String
DLL
wchar_t * QuickPDFDrawHTMLTextBox(int InstanceID, double Left, double Top,
double Width, double Height, wchar_t * HTMLText)
Parameters
| Left | Horizontal co-ordinate of the left edge of the drawing area |
| Top | Vertical co-ordinate of the top edge of the drawing area |
| Width | The width of the drawing area |
| Height | The height of the drawing area |
| HTMLText | The HTML text to draw |