Click or drag to resize
Pdf Library for .NET

PdfHtmlElement Constructor (String, String)

Creates a html object that can be added to a pdf document.

Namespace:  SelectPdf
Assembly:  Select.Pdf (in Select.Pdf.dll) Version: 20.2
Syntax
public PdfHtmlElement(
	string htmlString,
	string baseUrl
)

Parameters

htmlString
Type: SystemString
The html string to be converted to pdf.
baseUrl
Type: SystemString
This parameter allows the converter to resolve relative urls. Basically, baseUrl + relative image/css url = full absolute url.
Remarks
The html element is specified in this case by a html string. The html will be converted and rendered at the (0,0) location in the pdf canvas. The width of the element in pdf is the available width in pdf page and the height is auto determined.

The web page is rendered in an internal browser with the default width of 1024px and height auto determined. This can be changed using the WebPageWidth and WebPageHeight properties.

See Also