LEADTOOLS PDF (Leadtools.Pdf assembly)

ReplacePagesFrom Method

Show in webframe
Example 





The 1-based number of the replacement point in this PDFFile object. Must be greater than or equal to 1 and less than or equal to the total number of pages in sourceFile.
A PDFFile object associated with an existing PDF file that contain the source file to replace the pages from.
The 1-based number of the first page in the source file to be replaced. Must be a value greater than or equal to 1.
The 1-based number of the last page in the source file to be replaced. Must be a value greater than or equal to firstPageNumber and less than or equal to the total number of pages in the file. Use the special value of -1 to represent "last page in the file".
Replaces one or more pages from an existing PDF file into the file associated with this PDFFile object.
Syntax
public void ReplacePagesFrom( 
   int replacePageNumber,
   PDFFile sourceFile,
   int firstPageNumber,
   int lastPageNumber
)
'Declaration
 
Public Sub ReplacePagesFrom( _
   ByVal replacePageNumber As Integer, _
   ByVal sourceFile As PDFFile, _
   ByVal firstPageNumber As Integer, _
   ByVal lastPageNumber As Integer _
) 
'Usage
 
Dim instance As PDFFile
Dim replacePageNumber As Integer
Dim sourceFile As PDFFile
Dim firstPageNumber As Integer
Dim lastPageNumber As Integer
 
instance.ReplacePagesFrom(replacePageNumber, sourceFile, firstPageNumber, lastPageNumber)

            

            
public:
void ReplacePagesFrom( 
   int replacePageNumber,
   PDFFile^ sourceFile,
   int firstPageNumber,
   int lastPageNumber
) 

Parameters

replacePageNumber
The 1-based number of the replacement point in this PDFFile object. Must be greater than or equal to 1 and less than or equal to the total number of pages in sourceFile.
sourceFile
A PDFFile object associated with an existing PDF file that contain the source file to replace the pages from.
firstPageNumber
The 1-based number of the first page in the source file to be replaced. Must be a value greater than or equal to 1.
lastPageNumber
The 1-based number of the last page in the source file to be replaced. Must be a value greater than or equal to firstPageNumber and less than or equal to the total number of pages in the file. Use the special value of -1 to represent "last page in the file".
Remarks

Both files in this PDFFile (the destination) and sourceFile must exist and contain valid PDF files prior to calling this method.

To use this method, associate this PDFFile object and the source PDFFile with a valid PDF file and optional password. You can achieve this by either using the PDFFile(string fileName) or PDFFile(string fileName, string password) constructurs or set the file name and optional password directly into the FileName and Password properties. You do not need to call Load before using this method.

This method will use the following properties of this PDFFile object:

Example
Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Pdf
Imports Leadtools.WinForms

Public Sub PDFFileReplacePagesFromExample()
   Dim originalFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "LEAD.pdf")
   Dim sourceFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "PDFSegmentation.pdf")

   Dim destinationFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "LEAD_ReplacePage2.pdf")

   ' Make a copy of the original file
   File.Copy(originalFileName, destinationFileName, True)
   File.SetAttributes(destinationFileName, FileAttributes.Normal)

   ' This is the source PDF file to replace with
   Dim sourceFile As New PDFFile(sourceFileName)

   ' Replace page number 2 in destination file with source file
   Dim pdfFileObj As New PDFFile(destinationFileName)
   pdfFileObj.ReplacePagesFrom(2, sourceFile, 1, 1)
End Sub

Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Pdf;
using Leadtools.WinForms;

public void PDFFileReplacePagesFromExample()
{
   string originalFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD.pdf");
   string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"PDFSegmentation.pdf");

   string destinationFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_ReplacePage2.pdf");

   // Make a copy of the original file
   File.Copy(originalFileName, destinationFileName, true);
   File.SetAttributes(destinationFileName, FileAttributes.Normal);

   // This is the source PDF file to replace with
   PDFFile sourceFile = new PDFFile(sourceFileName);

   // Replace page number 2 in destination file with source file
   PDFFile file = new PDFFile(destinationFileName);
   file.ReplacePagesFrom(2, sourceFile, 1, 1);
}

static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
Requirements

Target Platforms

See Also

Reference

PDFFile Class
PDFFile Members

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.