Click or drag to resize

ConversionSummary Class

Offers summary information about the conversion process. After a successfull conversion the PdfConverter.ConversionSummary property is initialized with an instance of this class.
Inheritance Hierarchy
SystemObject
  ExpertPdf.HtmlToPdfConversionSummary

Namespace:  ExpertPdf.HtmlToPdf
Assembly:  ephtmltopdf (in ephtmltopdf.dll) Version: 17.0.0
Syntax
public class ConversionSummary

The ConversionSummary type exposes the following members.

Properties
  NameDescription
Public propertyConsoleLog
Returns the console log of the browser used to render the web page.
Public propertyHtmlContentSizePixels
The size of the HTML content in pixels.
Public propertyHtmlContentSizePoints
The size of the HTML content in points. A point is 1/72 inches. The converter internally transforms the HtmlContentSizePixels in points using the UnitsConverter class methods.
Public propertyHtmlContentWidthResizeFactor
The factor used to resize the HTML content when rendered in the PDF document. When PdfConverter.PdfDocumentOptions.FitWidth is true, the HTML content will be resized to fit the PDF page width if necessary.
Public propertyLastPageIndex
The index of the page where the rendering of the HTML ended. This information is useful when new elements are added after conversion in PostConvertActionEvent handler.
Public propertyLastPageRectangle
The bounds of the rectangle rendered on the last page. This information is useful when new elements are added after conversion in PostConvertActionEvent handler.
Public propertyPdfPageCount
The number of pages in the generated PDF document.
Public propertyPdfPageSizePoints
The page size in points of the generated PDF document
Public propertyRenderedPagesRectangles
The bounds of the rendered rectangle on each PDF page. This information becomes available in PostConvertActionEvent handler.
Top
See Also