Class ConversionSummary
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
Offers summary information about the conversion process. After a successful conversion the ConversionSummary property is initialized with an instance of this class.
[ClassInterface(ClassInterfaceType.AutoDual)]
public class ConversionSummary
- Inheritance
-
ConversionSummary
- Inherited Members
Properties
HtmlContentSizePixels
The size of the converted HTML content in pixels.
public SizeF HtmlContentSizePixels { get; }
Property Value
HtmlContentSizePoints
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 SizeF HtmlContentSizePoints { get; }
Property Value
HtmlContentWidthResizeFactor
The factor used to resize the HTML content when rendered in the PDF document. When FitWidth property of the PdfDocumentOptions object is true, the HTML content will be resized to fit the PDF page width if necessary.
public float HtmlContentWidthResizeFactor { get; }
Property Value
LastPageIndex
The index of the page where the rendering of the HTML ended. This information is useful when new elements are added after conversion.
public int LastPageIndex { get; set; }
Property Value
LastPageRectangle
The bounds of the rectangle rendered on the last page. This information is useful when new elements are added after conversion.
public RectangleF LastPageRectangle { get; set; }
Property Value
LastPdfPage
The PDF page where the rendering of the HTML ended
public PdfPage LastPdfPage { get; set; }
Property Value
PdfPageCount
The number of pages in the generated PDF document.
public int PdfPageCount { get; }
Property Value
PdfPageSizePoints
The page size in points of the generated PDF document
public SizeF PdfPageSizePoints { get; }
Property Value
RenderedPagesRectangles
The bounds of the rendered rectangle on each PDF page.
public RectangleF[] RenderedPagesRectangles { get; }