Class AddElementResult
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
The result of adding a PDF element to the renderer
[ClassInterface(ClassInterfaceType.AutoDual)]
public class AddElementResult
- Inheritance
-
AddElementResult
- Derived
- Inherited Members
Fields
pageBounds
The bounds inside the end page
protected RectangleF pageBounds
Field Value
pageIndex
The index of the PDF page where the rendering ends
protected int pageIndex
Field Value
pdfPage
The PDF page where the rendering ends
protected PdfPage pdfPage
Field Value
Properties
EndPageBounds
The bounds inside the page where the rendering of a page element ended. This information is useful for paged output of elements to continue adding new elements after this element
public RectangleF EndPageBounds { get; set; }
Property Value
EndPageIndex
The index of the page where the rendering of a page element ended. This information is useful for paged output of elements to continue adding new elements after this element
public int EndPageIndex { get; set; }
Property Value
EndPdfPage
The PDF page where the rendering of a page element ended. This information is useful for paged output of elements to continue adding new elements after this element
public PdfPage EndPdfPage { get; set; }