![]() |
Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.3.23
|
Leadtools.Pdf Assembly > Leadtools.Pdf Namespace > PDFFile Class : DeletePages Method |
public void DeletePages( int firstPageNumber, int lastPageNumber, string destinationFileName )
'Declaration
Public Sub DeletePages( _ ByVal firstPageNumber As Integer, _ ByVal lastPageNumber As Integer, _ ByVal destinationFileName As String _ )
'Usage
Dim instance As PDFFile Dim firstPageNumber As Integer Dim lastPageNumber As Integer Dim destinationFileName As String instance.DeletePages(firstPageNumber, lastPageNumber, destinationFileName)
public: void DeletePages( int firstPageNumber, int lastPageNumber, String^ destinationFileName )
To use this method, associate this PDFFile object 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) constructors or set the filename 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:
DocumentProperties. If the value of this property is null, then default properties will be used
SecurityOptions. If the value of this property is not null, then the destination file will be encrypted using the properties of this property. If the value of this property is null, the result file will not be encrypted
CompatibilityLevel. The version of the generated PDF file
This example will delete all pages except the first one from a PDF file.
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.Pdf Imports Leadtools.WinForms Imports Leadtools.Svg Imports Leadtools.ImageProcessing <TestMethod> _ Public Sub PDFFileDeletePagesExample() Dim sourceFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Leadtools.pdf") Dim destinationFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "LEAD_DeletePages.pdf") ' Get the number of pages in the source file Dim file As PDFFile = New PDFFile(sourceFileName) Dim pageCount As Integer = file.GetPageCount() Console.WriteLine("Pages in source file : {0}", pageCount) ' If the file has more than 1 page, delete all except the first page If pageCount > 1 Then ' -1 is (up to and including last page) file.DeletePages(2, -1, destinationFileName) End If 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.Controls; using Leadtools.Drawing; using Leadtools.ImageProcessing; using Leadtools.Pdf; using Leadtools.Svg; using Leadtools.WinForms; [TestMethod] public void PDFFileDeletePagesExample() { string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf"); string destinationFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_DeletePages.pdf"); // Get the number of pages in the source file PDFFile file = new PDFFile(sourceFileName); int pageCount = file.GetPageCount(); Console.WriteLine("Pages in source file : {0}", pageCount); // If the file has more than 1 page, delete all except the first page if (pageCount > 1) { // -1 is (up to and including last page) file.DeletePages(2, -1, destinationFileName); } } static class LEAD_VARS { public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; }