DrawHTMLTextBox
Text, HTML text, Page layout
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 TPDFlib.DrawHTMLTextBox(Left, Top, Width, Height: Double; Const HTMLText: WideString): WideString;ActiveX
Function PDFlib::DrawHTMLTextBox(Left As Double, Top As Double, Width As Double, Height As Double, HTMLText As String) As StringDLL
wchar_t * DLDrawHTMLTextBox(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 Vertical co-ordinate of the top edge of the drawing area |
|---|---|
| Top | |
| Width | The width of the drawing area |
| Height | The height of the drawing area |
| HTMLText | The HTML text to draw |
Return values
| LeftOverText | A "string" containing the text that did not fit into the TextBox. This value can be resused to draw the undrawn text into a new text box often on the next page. |
|---|