Insert/Import a single page at a specific location in the page sequence.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void PageInsert(
PageIterator where,
Page page
)
Public Sub PageInsert (
where As PageIterator,
page As Page
)
public:
virtual void PageInsert(
[InAttribute] PageIterator^ where,
[InAttribute] Page^ page
) sealed
function PageInsert(where, page);
Parameters
- where
- Type: pdftron.PDFPageIterator
- The location in the page sequence indicating where to insert
the page. The page is inserted before the specified location.
- page
- Type: pdftron.PDFPage
- A page to insert.
Remarks Invalidates all PageIterators pointing to the document.
See Also