Class HtmlToPdfElement
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class encapsulates a HTML to PDF converter functionality. Objects of this class can be added at any location in a PDF page or Template to render HTML. The conversion is performed when the element is added to a page or Template.
[ClassInterface(ClassInterfaceType.AutoDual)]
public class HtmlToPdfElement : PageGraphicElement
- Inheritance
-
HtmlToPdfElement
- Derived
- Inherited Members
Constructors
HtmlToPdfElement(float, float, float, float, string)
Creates an URL to PDF converter element at the specified x and y coordinates with the specified width and height.
public HtmlToPdfElement(float x, float y, float width, float height, string urlToConvert)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
height
floatThe destination height in points for the rendered content. If the specified height is less or equal 0, the destination height will be auto determined so all the content can be rendered. Please note that the specified height is the effective height that will be rendered in the PDF document and does not include for example the empty spaces introduced by custom or automatic page breaks.
urlToConvert
stringThe URL to convert to PDF
HtmlToPdfElement(float, float, float, float, string, int, int)
Creates a URL to PDF converter element at the specified x and y coordinates with the specified width and height. The virtual browser width and height in pixels are specified by the htmlViewerWidth and htmlViewerHeight parameters.
public HtmlToPdfElement(float x, float y, float width, float height, string urlToConvert, int htmlViewerWidth, int htmlViewerHeight)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
height
floatThe destination height in points for the rendered content. If the specified height is less or equal 0, the destination height will be auto determined so all the content can be rendered. Please note that the specified height is the effective height that will be rendered in the PDF document and does not include for example the empty spaces introduced by custom or automatic page breaks.
urlToConvert
stringThe URL to convert to PDF
htmlViewerWidth
intThe virtual browser width in pixels. The default value is 1024 pixels. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width.
htmlViewerHeight
intThe virtual browser height in pixels. The default value is 0 which means the height will be auto-determined. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width and height. When this parameter is less or equal to 0, the converter will try to auto-determine the HTML page height from the HTML document content.
HtmlToPdfElement(float, float, float, float, string, int, int, string)
Creates a URL to PDF converter element at the specified x and y coordinates with the specified width and height using a document URL to resolve the internal links. The virtual browser width and height in pixels are specified by the htmlViewerWidth and htmlViewerHeight parameters.
public HtmlToPdfElement(float x, float y, float width, float height, string urlToConvert, int htmlViewerWidth, int htmlViewerHeight, string internalLinksBaseUrl)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
height
floatThe destination height in points for the rendered content. If the specified height is less or equal 0, the destination height will be auto determined so all the content can be rendered. Please note that the specified height is the effective height that will be rendered in the PDF document and does not include for example the empty spaces introduced by custom or automatic page breaks.
urlToConvert
stringThe URL to convert to PDF
htmlViewerWidth
intThe virtual browser width in pixels. The default value is 1024 pixels. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width.
htmlViewerHeight
intThe virtual browser height in pixels. The default value is 0 which means the height will be auto-determined. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width and height. When this parameter is less or equal to 0, the converter will try to auto-determine the HTML page height from the HTML document content.
internalLinksBaseUrl
stringThe full URL of the document referenced by the internal links from the HTML document. This parameter is necessary when the converted URL is not the full URL of a document.
HtmlToPdfElement(float, float, float, float, string, string)
Creates a HTML string to PDF converter element at the specified x and y coordinates with the specified width and height using a base URL to resolve the external resources.
public HtmlToPdfElement(float x, float y, float width, float height, string htmlStringToConvert, string htmlStringBaseURL)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
height
floatThe destination height in points for the rendered content. If the specified height is less or equal 0, the destination height will be auto determined so all the content can be rendered. Please note that the specified height is the effective height that will be rendered in the PDF document and does not include for example the empty spaces introduced by custom or automatic page breaks.
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
HtmlToPdfElement(float, float, float, float, string, string, int, int)
Creates a HTML string to PDF converter element at the specified x and y coordinates with the specified width and height using a base URL to resolve the external resources. The virtual browser width and height in pixels is specified by the htmlViewerWidth and htmlViewerHeight parameters.
public HtmlToPdfElement(float x, float y, float width, float height, string htmlStringToConvert, string htmlStringBaseURL, int htmlViewerWidth, int htmlViewerHeight)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
height
floatThe destination height in points for the rendered content. If the specified height is less or equal 0, the destination height will be auto determined so all the content can be rendered. Please note that the specified height is the effective height that will be rendered in the PDF document and does not include for example the empty spaces introduced by custom or automatic page breaks.
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
htmlViewerWidth
intThe virtual browser width in pixels. The default value is 1024 pixels. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width.
htmlViewerHeight
intThe virtual browser height in pixels. The default value is 0 which means the height will be auto-determined. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width and height. When this parameter is less or equal to 0, the converter will try to auto-determine the HTML page height from the HTML document content.
HtmlToPdfElement(float, float, float, float, string, string, string)
Creates a HTML string to PDF converter element at the specified x and y coordinates with the specified width and height using a base URL to resolve the external resources and a document URL to resolve the internal links.
public HtmlToPdfElement(float x, float y, float width, float height, string htmlStringToConvert, string htmlStringBaseURL, string internalLinksBaseUrl)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
height
floatThe destination height in points for the rendered content. If the specified height is less or equal 0, the destination height will be auto determined so all the content can be rendered. Please note that the specified height is the effective height that will be rendered in the PDF document and does not include for example the empty spaces introduced by custom or automatic page breaks.
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
internalLinksBaseUrl
stringThe full URL of the document referenced by the internal links from the HTML string.
HtmlToPdfElement(float, float, float, float, string, string, string, int, int)
Creates a HTML string to PDF converter element at the specified x and y coordinates with the specified width and height using a base URL to resolve the external resources and a document URL to resolve the internal links. The virtual browser width and height in pixels is specified by the htmlViewerWidth and htmlViewerHeight parameters.
public HtmlToPdfElement(float x, float y, float width, float height, string htmlStringToConvert, string htmlStringBaseURL, string internalLinksBaseUrl, int htmlViewerWidth, int htmlViewerHeight)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
height
floatThe destination height in points for the rendered content. If the specified height is less or equal 0, the destination height will be auto determined so all the content can be rendered. Please note that the specified height is the effective height that will be rendered in the PDF document and does not include for example the empty spaces introduced by custom or automatic page breaks.
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
internalLinksBaseUrl
stringThe full URL of the document referenced by the internal links from the HTML string.
htmlViewerWidth
intThe virtual browser width in pixels. The default value is 1024 pixels. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width.
htmlViewerHeight
intThe virtual browser height in pixels. The default value is 0 which means the height will be auto-determined. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width and height. When this parameter is less or equal to 0, the converter will try to auto-determine the HTML page height from the HTML document content.
HtmlToPdfElement(float, float, float, string)
Creates an URL to PDF converter element at the specified x and y coordinates with the specified width. The height in PDF is auto determined.
public HtmlToPdfElement(float x, float y, float width, string urlToConvert)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
urlToConvert
stringThe URL to convert to PDF
HtmlToPdfElement(float, float, float, string, int)
Creates an URL to PDF converter element at the specified x and y coordinates with the specified width. The height in PDF is auto determined. The virtual browser width in pixels is specified by the htmlViewerWidth parameter.
public HtmlToPdfElement(float x, float y, float width, string urlToConvert, int htmlViewerWidth)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
urlToConvert
stringThe URL to convert to PDF
htmlViewerWidth
intThe virtual browser width in pixels. The default value is 1024 pixels. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width.
HtmlToPdfElement(float, float, float, string, string)
Creates a HTML string to PDF converter element at the specified x and y coordinates with the specified width using a base URL to resolve the external resources. The height in PDF is auto determined.
public HtmlToPdfElement(float x, float y, float width, string htmlStringToConvert, string htmlStringBaseURL)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
HtmlToPdfElement(float, float, float, string, string, int)
Creates a HTML string to PDF converter element at the specified x and y coordinates with the specified width using a base URL to resolve the external resources. The height in PDF is auto determined. The virtual browser width in pixels is specified by the htmlViewerWidth parameter.
public HtmlToPdfElement(float x, float y, float width, string htmlStringToConvert, string htmlStringBaseURL, int htmlViewerWidth)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
htmlViewerWidth
intThe virtual browser width in pixels. The default value is 1024 pixels. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width.
HtmlToPdfElement(float, float, float, string, string, string)
Creates a HTML string to PDF converter element at the specified x and y coordinates with the specified width using a base URL to resolve the external resources and a document URL to resolve the internal links. The height in PDF is auto determined.
public HtmlToPdfElement(float x, float y, float width, string htmlStringToConvert, string htmlStringBaseURL, string internalLinksBaseUrl)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
internalLinksBaseUrl
stringThe full URL of the document referenced by the internal links from the HTML string.
HtmlToPdfElement(float, float, float, string, string, string, int)
Creates a HTML string to PDF converter element at the specified x and y coordinates with the specified width using a base URL to resolve the external resources and a document URL to resolve the internal links. The height in PDF is auto determined. The virtual browser width in pixels is specified by the htmlViewerWidth parameter.
public HtmlToPdfElement(float x, float y, float width, string htmlStringToConvert, string htmlStringBaseURL, string internalLinksBaseUrl, int htmlViewerWidth)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed
width
floatThe destination width in points for the rendered content. If the specified with is less or equal 0, the destination width will be given by the available width in page
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
internalLinksBaseUrl
stringThe full URL of the document referenced by the internal links from the HTML string.
htmlViewerWidth
intThe virtual browser width in pixels. The default value is 1024 pixels. The effect of this parameter is similar with viewing the HTML page in a browser window with the specified width.
HtmlToPdfElement(float, float, string)
Creates an URL to PDF converter element at the specified x and y coordinates in PDF page. The width of element in PDF page is the available width in PDF page and the height is auto determined.
public HtmlToPdfElement(float x, float y, string urlToConvert)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed the destination width will be given by the available width in page
urlToConvert
stringThe URL to convert to PDF
HtmlToPdfElement(float, float, string, string)
Creates a HTML string to PDF converter element at the specified x and y coordinates in PDF page using a base URL to resolve the external resources. The width of element in PDF page is the available width in PDF page and the height is auto determined.
public HtmlToPdfElement(float x, float y, string htmlStringToConvert, string htmlStringBaseURL)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed the destination width will be given by the available width in page
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
HtmlToPdfElement(float, float, string, string, string)
Creates a HTML string to PDF converter element at the specified x and y coordinates in PDF page using a base URL to resolve the external resources and a document URL to resolve the internal links. The width of element in PDF page is the available width in PDF page and the height is auto determined.
public HtmlToPdfElement(float x, float y, string htmlStringToConvert, string htmlStringBaseURL, string internalLinksBaseUrl)
Parameters
x
floatThe x position in points where the rendered content will be placed
y
floatThe y position in points where the rendered content will be placed the destination width will be given by the available width in page
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
internalLinksBaseUrl
stringThe full URL of the document referenced by the internal links from the HTML string.
HtmlToPdfElement(string)
Creates an URL to PDF converter element at the (0,0) location in PDF page. The width of element in PDF page is the available width in PDF page and the height is auto determined.
public HtmlToPdfElement(string urlToConvert)
Parameters
urlToConvert
stringThe URL to convert to PDF
HtmlToPdfElement(string, string)
Creates a HTML string to PDF converter element that will be rendered at the (0,0) location in PDF page using a base URL to resolve the external resources. The width of element in PDF page is the available width in PDF page and the height is auto determined.
public HtmlToPdfElement(string htmlStringToConvert, string htmlStringBaseURL)
Parameters
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
HtmlToPdfElement(string, string, string)
Creates a HTML string to PDF converter element that will be rendered at the (0,0) location in PDF page using a base URL to resolve the external resources and a document URL to resolve the internal links. The width of element in PDF page is the available width in PDF page and the height is auto determined.
public HtmlToPdfElement(string htmlStringToConvert, string htmlStringBaseURL, string internalLinksBaseUrl)
Parameters
htmlStringToConvert
stringThe HTML string convert to PDF.
htmlStringBaseURL
stringThe full URL of the page from where this string was taken used to resolve the images and CSS files referenced by a relative URL in the HTML string. This parameter is optional and the default value is NULL. When this parameter is NULL no base URL will be used.
internalLinksBaseUrl
stringThe full URL of the document referenced by the internal links from the HTML string.
Fields
AUTO_HTML_VIEWER_HEIGHT_PX
The default virtual browser height in pixels is set to autodetect the HTML content height.
public const int AUTO_HTML_VIEWER_HEIGHT_PX = 0
Field Value
AUTO_PDF_HEIGHT_POINTS
The default width in PDF of the element is set to available width in PDF page.
public const int AUTO_PDF_HEIGHT_POINTS = -1
Field Value
AVAILABLE_PDF_WIDTH_POINTS
The default width in PDF of the element is set to available width in PDF page.
public const int AVAILABLE_PDF_WIDTH_POINTS = -1
Field Value
DEFAULT_HTML_VIEWER_WIDTH_PX
The default virtual browser width in pixels
public const int DEFAULT_HTML_VIEWER_WIDTH_PX = 1024
Field Value
Properties
AuthenticationOptions
The AuthenticationOptions can be set with an username and a password in order to authenticate to the web server before accessing the URL to be converted in HTML to PDF element converter. They can be used for example to resolve the IIS Integrated Windows Authentication or other types of IIS authentication. They cannot be used to resolve ASP.NET Forms Authentication or a custom authentication method defined at application level.
public AuthenticationOptions AuthenticationOptions { get; }
Property Value
AvoidHtmlElementsBreakSelectors
Gets or sets the CSS selectors of the HTML elements to not be broken between PDF pages if possible when the HTML to PDF element is rendered
public string[] AvoidHtmlElementsBreakSelectors { get; set; }
Property Value
- string[]
AvoidImageBreak
When true this property instructs the HTML to PDF element converter to try to avoid cutting off the images between PDF pages
public bool AvoidImageBreak { get; set; }
Property Value
AvoidTextBreak
When true this property instructs the HTML to PDF element converter to try to avoid cutting off the text between PDF pages. This property is true by default
public bool AvoidTextBreak { get; set; }
Property Value
BaseUrl
Gets or sets the base URL of the HTML string to be converted to PDF
public string BaseUrl { get; set; }
Property Value
BottomSpacing
A space in points to introduce at the bottom of PDF pages where the HTML element is rendered. 1 point is 1/72 inch. By default the bottom spacing is 0.
public float BottomSpacing { get; set; }
Property Value
ClipHtmlView
If the HTML content is not entirely visible in the HTML viewer of the HTML to PDF element at the specified width, the ClipHtmlView property will control whether the HTML content is clipped or the HTML viewer width is automatically extended to make visible the whole HTML content. The HTML viewer width is given by the HtmlViewerWidth property. The default value of this property is false.
public bool ClipHtmlView { get; set; }
Property Value
ConversionDelay
An additional time in seconds to wait for asynchronous items to be completely loaded or for a web page redirect to finish before starting the rendering in HTML to PDF element converter. Default value is 0.
public int ConversionDelay { get; set; }
Property Value
DefaultHtmlEncoding
The default HTML document text encoding to be used if there is no charset meta tag defined in the HTML document. By default this property is not set and an auto determined text encoding will be used by converter
public string DefaultHtmlEncoding { get; set; }
Property Value
DownloadAllResources
Gets or sets a flag indicating if the HTML to PDF element should try to download all the resources even if this could cause a slower conversion. The default value is false.
public bool DownloadAllResources { get; set; }
Property Value
EmbedFonts
When true this option instructs the HTML to PDF element converter to embed all the true type fonts into the PDF document. The default value is true
public bool EmbedFonts { get; set; }
Property Value
Enable3DTransformations
Gets or sets a flag indicating if the accelerated CSS 3D transformations are enabled in the HTML to PDF element converter. The default value is false
public bool Enable3DTransformations { get; set; }
Property Value
EnableAccelerated2DCanvas
Gets or sets a flag indicating if the accelerated 2D canvas is enabled in the HTML to PDF element converter. The default value is false
public bool EnableAccelerated2DCanvas { get; set; }
Property Value
EnableHttp2
Gets or sets a flag indicating if the HTTP2 protocol is enabled in HTML to PDF element converter. The property has effect only in NE version of the library. The default value is false
public bool EnableHttp2 { get; set; }
Property Value
EnablePersistentStorage
Gets or sets a flag indicating if the persistent local storage is enabled in the HTML to PDF element converter. The default value is false
public bool EnablePersistentStorage { get; set; }
Property Value
EnableWebGL
Gets or sets a flag indicating if the WebGL is enabled in the HTML to PDF element converter. The default value is false
public bool EnableWebGL { get; set; }
Property Value
EnhancedGraphicsQuality
A flag indicating the PDF graphics are rendered at the best quality by HTML to PDF element. The default property value is true
public bool EnhancedGraphicsQuality { get; set; }
Property Value
EvoInternalFileName
Sets the full path of evointernal.dat helper file of the HTML to PDF element. By default this file is expected to be found in the same folder with evohtmltopdf.dll assembly.
public string EvoInternalFileName { set; }
Property Value
ExtensionsEnabled
Gets or sets a flag indicating if the HTML viewer extensions are executed in HTML to PDF element converter. The default value is false and no extension is executed. The Flash player for Mozilla Firefox must be installed in order to execute the flash content from HTML
public bool ExtensionsEnabled { get; set; }
Property Value
FitHeight
When this property is true the content produced by the HTML to PDF element will be resized if necessary to fit the available height in PDF page. By default this property is false.
public bool FitHeight { get; set; }
Property Value
FitWidth
When this property is true the content produced by the HTML to PDF element will be resized if necessary to fit the available width in PDF page. When false the HTML content will be rendered at the real size. By default this property is true and the content will be resized if necessary to fit the available width in PDF page.
public bool FitWidth { get; set; }
Property Value
Height
Gets or sets the destination height in points of the rendered content. If the specified height is less or equal to 0, the destination height will be auto determined so all the content can be rendered.
public float Height { get; set; }
Property Value
HiddenHtmlElementsSelectors
Gets or sets the CSS selectors of the HTML elements to be excluded from rendering in HTML to PDF element
public string[] HiddenHtmlElementsSelectors { get; set; }
Property Value
- string[]
Html
Gets or sets the HTML string to be converted to PDF
public virtual string Html { get; set; }
Property Value
HtmlDocumentInfo
Gets an object populated after conversion with the title, keywords, and description of the HTML document rendered by the HTML to PDF element.
public HtmlDocumentInfo HtmlDocumentInfo { get; }
Property Value
HtmlElementsMappingOptions
Gets a reference to the object that can be used to obtain the position in PDF of the HTML elements rendered by the HTML to PDF element. In order to retrieve the position in PDF for a list of HTML elements, the HtmlElementSelectors property of HtmlElementsMappingOptions class must be set with an array of strings containing the CSS selectors of the HTML elements you want to map. The positions of the HTML elements in the generated PDF document will be returned in the HtmlElementsMappingResult object after the element was added to the page.
public HtmlElementsMappingOptions HtmlElementsMappingOptions { get; }
Property Value
HtmlViewerHeight
Gets or sets the HTML viewer height in pixels of the HTML to PDF element. If the specified HTML viewer height is 0 the HTML viewer height will be automatically determined based on the HTML content and the HTML viewer width in order to make visible the whole HTML content. The HTML viewer width is given by the HtmlViewerWidth property of the HtmlToPdfElement class. If the HTML content is not entirely visible in the HTML viewer at the specified width, the ClipHtmlView property will control whether the HTML content is clipped or the HTML viewer width is automatically extended to make visible the whole HTML content. The HTML viewer height can also be specified in the HtmlToPdfElement class contructor. The default value is 0 to automatically determine the HTML viewer height based on the HTML content and the HTML viewer width.
public int HtmlViewerHeight { get; set; }
Property Value
HtmlViewerWidth
Gets or sets the preferred HTML viewer width in pixels of the HTML to PDF element. If the HTML content is not entirely visible in the HTML viewer at the specified width, the ClipHtmlView property will control whether the HTML content is clipped or the HTML viewer width is automatically extended to make visible the whole HTML content. By default the ClipHtmlView property is false and the HTML viewer is automatically extended in width to make visible the whole HTML content. The HTML viewer width can also be specified in the HtmlToPdfElement class constructor. The default value is 1024 pixels.
public int HtmlViewerWidth { get; set; }
Property Value
HtmlViewerZoom
Gets or sets the HTML viewer zoom percentage in HTML to PDF element similar to zoom level in a browser. The default value of this property is 100
public int HtmlViewerZoom { get; set; }
Property Value
HttpPostFields
Returns the collection of HTTP POST fields to be used when accessing a web page in HTML to PDF element. If there are elements in collection then the converter will make a POST request to the web page URL with the fields from this collection, otherwise it will make a GET request
public NameValueCollection HttpPostFields { get; }
Property Value
HttpRequestCookies
Gets a collection of custom HTTP cookies to be sent by the HTML to PDF element converter to the web server when the web page to convert and the resources (image, css, etc) referenced by the web page are requested. A cookie is defined by a name and a value pair that can be added to the collection using the Add(string, string) method of the HttpRequestCookies property.
public NameValueCollection HttpRequestCookies { get; }
Property Value
HttpRequestHeaders
Gets a collection of custom HTTP headers to be sent by the HTML to PDF element converter to the web server when the web page is requested from a URL. A custom HTTP header is defined by a name and a value pair that can be added to the collection using the Add(string, string) method of the HttpRequestHeaders property. The PersistentHttpRequestHeaders property can be set on true to instruct the converter to send the custom headers each time an external resource (image, css, etc) referenced by the web page is requested. By default the PersistentHttpRequestHeaders property is false and the custom headers are not automatically sent to the web server when the web page resources are requested. The custom HTTP headers can be used to define cookies, authentication options, URL referrer or any other HTTP header to be sent to the web browser. The preferred method to send cookies is to use the HttpRequestCookies property.
public NameValueCollection HttpRequestHeaders { get; }
Property Value
ImagePartSize
Gets or sets the maximum height in pixels of an image part in HTML to PDF element converter
public int ImagePartSize { get; set; }
Property Value
ImagesScalingEnabled
A flag indicating if the images scaling is allowed in HTML to PDF element. The default property value is false
public bool ImagesScalingEnabled { get; set; }
Property Value
ImpersonationOptions
The impersonation options applied during navigation by HTML to PDF element converter
public ImpersonationOptions ImpersonationOptions { get; }
Property Value
InitialHtmlViewerHeight
Gets or sets the initial height in pixels of the HTML viewer in HTML to PDF element converter. This value of this property is ignored if the HtmlViewerHeight property is set
public int InitialHtmlViewerHeight { get; set; }
Property Value
InsertNewPagesEnabled
A flag indicating if the HTML to PDF element will always insert a new page in the PDF document when rendering next page instead of trying to use an already existing PDF page. This property is false by default
public bool InsertNewPagesEnabled { get; set; }
Property Value
InteractiveHiddenElements
A flag indicating if the interactive features are enabled for hidden HTML elements. This property is false by default
public bool InteractiveHiddenElements { get; set; }
Property Value
InternalLinksEnabled
When true this option instructs the HTML to PDF element to convert the internal HTML links to internal PDF links. The default value is true.
public bool InternalLinksEnabled { get; set; }
Property Value
InterruptSlowJavaScript
Gets or sets a flag indicating if the slow JavaScript script should be interrupted in the HTML to PDF element converter. The default value is false and the scripts are not interrupted
public bool InterruptSlowJavaScript { get; set; }
Property Value
JavaScriptEnabled
A flag indicating if JavaScript execution is enabled in HTML to PDF element converter. The default is true.
public bool JavaScriptEnabled { get; set; }
Property Value
LiveUrlsEnabled
When true this option instructs the HTML to PDF element to convert the HTML links to PDF links. The default value is true.
public bool LiveUrlsEnabled { get; set; }
Property Value
LocalFilesAccessEnabled
Gets or sets a flag indicating if the access to local files is enabled in the HTML to PDF element converter. The default value is true
public bool LocalFilesAccessEnabled { get; set; }
Property Value
ManualTriggeringConversionDelay
An additional time in seconds to wait after manual triggering before starting the rendering in HTML to PDF element. Default value is 0.
public int ManualTriggeringConversionDelay { get; set; }
Property Value
MaxHtmlViewerHeight
Gets or sets the maximum height in pixels to be rendered from the HTML document by the HTML to PDF element converter. The default value is 0 and the entire HTML document is rendered
public int MaxHtmlViewerHeight { get; set; }
Property Value
MediaType
Gets or sets the media type of the HTML document used by the HTML to PDF element. The default media type is 'screen'. If you set this property with 'print' then the CSS properties defined in '@media print' rule will be used to render the document
public string MediaType { get; set; }
Property Value
MinHtmlViewerHeight
Gets or sets the minimum height in pixels to be rendered from HTML document by the HTML to PDF element converter. This value of this property is ignored if the HtmlViewerHeight property is set
public int MinHtmlViewerHeight { get; set; }
Property Value
NavigationTimeout
The HTML to PDF element converter navigation timeout in seconds. Default value is 60.
public int NavigationTimeout { get; set; }
Property Value
NavigatorUserAgent
The custom user agent to be used when accessing the HTML page. When this property is null or empty the default user agent is used
public string NavigatorUserAgent { get; set; }
Property Value
NoSizeElementsEnabled
A flag indicating if the hidden elements are rendered by the HTML to PDF element. The default property value is false
public bool NoSizeElementsEnabled { get; set; }
Property Value
PageBreakAfterHtmlElementsSelectors
Gets or sets the CSS selectors of the HTML elements after which to force a page break in PDF document when the HTML to PDF element is rendered
public string[] PageBreakAfterHtmlElementsSelectors { get; set; }
Property Value
- string[]
PageBreakBeforeHtmlElementsSelectors
Gets or sets the CSS selectors of the HTML elements before which to force a page break in PDF document when the HTML to PDF element is rendered
public string[] PageBreakBeforeHtmlElementsSelectors { get; set; }
Property Value
- string[]
Paginate
When this property is true the HTML to PDF element can be paginated to render many PDF pages if necessary.
public bool Paginate { get; set; }
Property Value
PdfBookmarkOptions
Gets a reference to the object controlling the bookmarks creation in PDF for the HTML to PDF element. In order to enable creation of bookmarks you have to set the HtmlElementSelectors property of PdfBookmarkOptions class with the CSS selectors of the HTML elements you want to bookmark.
public PdfBookmarkOptions PdfBookmarkOptions { get; }
Property Value
PdfFormOptions
Gets a reference to the object controlling the automatic conversion of a HTML form to a PDF form in the generated PDF document
public PdfFormOptions PdfFormOptions { get; }
Property Value
PersistentHttpRequestHeaders
This property can be set on true to instruct the HTML to PDF element converter to send the custom headers defined by the HttpRequestHeaders property each time an external resource (image, css, etc) referenced by the web page is requested. The default value of this property is true and the custom headers are automatically sent to the web server when the web page resources are requested.
public bool PersistentHttpRequestHeaders { get; set; }
Property Value
PostScriptFontsEnabled
Gets or sets a flag indicating if the fonts with PostScript outlines are enabled in the HTML to PDF element converter. The default value is true
public bool PostScriptFontsEnabled { get; set; }
Property Value
PrerenderEnabled
Gets or sets a flag indicating if the HTML to PDF element should perform a pre-rendering. The default value is false
public bool PrerenderEnabled { get; set; }
Property Value
ProxyOptions
Gets a reference to an object encapsulating the proxy options used by HTML to PDF element to access the HTML document to convert.
public ProxyOptions ProxyOptions { get; }
Property Value
RenderedHtmlElementSelector
Get or set the CSS selector of the HTML element to be rendered by the HTML to PDF element converter. If the selector selects multiple HTML elements, only the the first one will be converted. The CSS selector is case sensitive. If this property is not set then the entire HTML document is rendered
public string RenderedHtmlElementSelector { get; set; }
Property Value
RenderedPagesRectangles
The bounds of the rectangle rendered in each PDF page by the HTML to PDF element. This property is assigned after the element has been added to a PDF page.
public RectangleF[] RenderedPagesRectangles { get; }
Property Value
StackRepeatedTableFooters
Get or sets a flag indicating if the repeated HTML table footers are stacked at the bottom of the PDF page when multiple HTML tables have repeated footers on that PDF page. Default value is true
public bool StackRepeatedTableFooters { get; set; }
Property Value
StackRepeatedTableHeaders
Get or sets a flag indicating if the repeated HTML table headers are stacked at the top of the PDF page when multiple HTML tables have repeated headers on that PDF page. Default value is true
public bool StackRepeatedTableHeaders { get; set; }
Property Value
StretchToFit
This property has effect in HTML to PDF element only when FitWidth property is true. When FitWidth is true and this property is true the HTML content will be stretched if necessary to fit the available width in PDF page. By default this property is false and the content will not be stretched to fit the available width in PDF page.
public bool StretchToFit { get; set; }
Property Value
SvgFontsEnabled
Gets or sets a flag indicating if the SVG fonts are enabled in the HTML to PDF element converter. The default value is false
public bool SvgFontsEnabled { get; set; }
Property Value
TableFooterRepeatEnabled
Get or sets a flag indicating if the repeating of the HTML table footer in PDF pages generated by the HTML to PDF element is enabled. Default value is true
public bool TableFooterRepeatEnabled { get; set; }
Property Value
TableHeaderRepeatEnabled
Get or sets a flag indicating if the repeating of the HTML table header in PDF pages generated by the HTML to PDF element is enabled. Default value is true
public bool TableHeaderRepeatEnabled { get; set; }
Property Value
TableOfContentsEnabled
Get or sets a flag indicating if this HTML to PDF element can contribute to the PDF document table of contents. The PDF document table of contents is controlled by TableOfContents property. Default value is true
public bool TableOfContentsEnabled { get; set; }
Property Value
TiledRenderingEnabled
A flag indicating if rendering of HTML document is tiled in HTML to PDF element. This property is true by default
public bool TiledRenderingEnabled { get; set; }
Property Value
TopSpacing
A space in points to introduce at the top of PDF pages where the HTML element is rendered. 1 point is 1/72 inch. By default the top spacing is 0.
public float TopSpacing { get; set; }
Property Value
TransparentImagesEnabled
A flag indicating if the HTML to PDF element converter uses transparency information of the images. The default property value is true
public bool TransparentImagesEnabled { get; set; }
Property Value
TriggeringMode
The conversion triggering mode used by HTML to PDF element converter. The default value is Auto.
public TriggeringMode TriggeringMode { get; set; }
Property Value
Url
Gets or sets the URL of the HTML document to be converted to PDF
public string Url { get; set; }
Property Value
WebFontsEnabled
Gets or sets a flag indicating if the Web Fonts are enabled in the HTML to PDF element converter. The default value is true
public bool WebFontsEnabled { get; set; }
Property Value
Width
Gets or sets the destination width in points of the rendered content. If the specified width is less or equal to 0, the destination width will be given by the available width in page
public float Width { get; set; }
Property Value
X
Gets or sets the x position in points where the rendered content will be placed in PDF page
public float X { get; set; }
Property Value
XPSupplementalLanguages
A flag in HTML to PDF element indicating if the supplemental languages (complex script, right-to-left, East Asian) support was enabled in Windows XP Regional and Language Options. The default value is false.
public bool XPSupplementalLanguages { get; set; }
Property Value
Y
Gets or sets the y position in points where the rendered content will be placed in PDF page
public float Y { get; set; }
Property Value
Events
AfterRenderPdfPageEvent
The event is raised right after the HTML to PDF element finished PDF page rendering. The PDF page configuration like size, orientation, header or footer is already defined and cannot be changed. In the handler of this event PDF elements can be added in the foreground of the rendered PDF page.
public event AfterRenderPdfPageDelegate AfterRenderPdfPageEvent
Event Type
BeforeRenderPdfPageEvent
The event is raised right before the page is rendered by HTML to PDF element. The PDF page configuration like size, orientation, header or footer is already defined and cannot be changed. In the handler of this event PDF elements can be added in the background of the PDF page to be rendered.
public event BeforeRenderPdfPageDelegate BeforeRenderPdfPageEvent
Event Type
NavigationCompletedEvent
The event is raised right after the converter finished the navigation and before rendering HTML content to PDF
public event NavigationCompletedDelegate NavigationCompletedEvent
Event Type
PrepareRenderPdfPageEvent
The event is raised after the HTML to PDF element created the PDF page and before starting rendering it. In the handler of this event the PDF page configuration like size, orientation, header or footer can still be changed before starting rendering.
public event PrepareRenderPdfPageDelegate PrepareRenderPdfPageEvent