LEADTOOLS Image File Support (Leadtools.Codecs assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
IsLeadPdf Property
See Also 
Leadtools.Codecs Namespace > CodecsRasterPdfInfo Structure : IsLeadPdf Property



Gets or sets a value indicating whether the PDF file was created with the LEADTOOLS Raster PDF plug in.

Syntax

Visual Basic (Declaration) 
Public Property IsLeadPdf As Boolean
Visual Basic (Usage)Copy Code
Dim instance As CodecsRasterPdfInfo
Dim value As Boolean
 
instance.IsLeadPdf = value
 
value = instance.IsLeadPdf
C# 
public bool IsLeadPdf {get; set;}
C++/CLI 
public:
property bool IsLeadPdf {
   bool get();
   void set (    bool value);
}

Property Value

true if the PDF file was created with the LEADTOOLS Raster PDF plug in, false; otherwise.

Example

For an example, refer to CodecsRasterPdfInfo.

Remarks

If the value of this property is true, then other members of this structure are guarranteed to contain accurate information. If the value of this property is false and Format is one of the PDF flavors (RasterImageFormat.RasPdfXyz, then the source file is a PDF not created with LEADTOOLS, and the other members of this structure may not be guarranteed to contain accurate information. If this property is true, then calling RasterCodecs.DeletePage is guarranteed to work on this file.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also