Click or drag to resize
Pdf Library for .NET

PdfTool Class

Base class for pdf tools classes (PdfToText, PdfRasterizer, etc). Should not be used directly.
Inheritance Hierarchy
SystemObject
  SelectPdfPdfTool
    SelectPdfPdfPrinter
    SelectPdfPdfRasterizer
    SelectPdfPdfToText

Namespace:  SelectPdf
Assembly:  Select.Pdf (in Select.Pdf.dll) Version: 20.2
Syntax
public class PdfTool

The PdfTool type exposes the following members.

Constructors
  NameDescription
Public methodPdfTool
This class should be instantiated from the child classes: PdfToText, PdfRasterizer, etc.
Top
Properties
  NameDescription
Public propertyDocumentInformation
PDF document information. This property is populated after the requested operation (GetText, GetHtml, etc) is finished.
Public propertyEndPageNumber
The page number where the current operation will end on the PDF file. The default value is 0 which means that all the PDF document is processed starting from the StartPageNumber page.
Public propertyStartPageNumber
The page number from where the current operation will start on the PDF file. The default value is 1 which means that the operation will start from the first page.
Public propertyTimeout
Timeout in seconds for the current operation. Default value is 600 seconds.
Public propertyUserPassword
The user password to be used to open the PDF document for reading. The default value is null, which means that no password will be used to open the PDF document.
Top
Methods
  NameDescription
Public methodGetInfo
Gets the information of the loaded PDF document.
Public methodGetPageCount
Gets the number of pages in the loaded PDF document.
Public methodLoad(Byte)
Loads a pdf document from a byte array.
Public methodLoad(Stream)
Loads a pdf document from the specified stream.
Public methodLoad(String)
Loads an existing pdf file.
Public methodLoad(Byte, String)
Loads a password protected pdf document from a byte array.
Public methodLoad(Stream, String)
Loads a pdf document from a stream containing a password protected pdf document.
Public methodLoad(String, String)
Loads an existing password protected pdf file.
Top
See Also