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



Gets or sets a value indicating whether the PDF file should be saved as PDF v1.4.

Syntax

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

Property Value

true to save the file as PDF v1.4; otherwise it will be saved as PDF v1.2.

Example

For an example, refer to CodecsPdfOptions.

Remarks

Note: It is recommended you use the Version property instead of SavePdfA, SavePdfv13, SavePdfv14, SavePdfv15 and SavePdfv16. Version provides a clearer view of what the final version of the raster PDF will be when saving with LEADTOOLS. Setting Version will automatically toggles the various SavePdfXYZ properties accordingly and setting these properties might change the value of Version.

PDF/A is a subset of the PDF standard that contains only those features that are suited for long-term archival. Primarily this means that the document will be completely self-contained: it includes all content, font and color information.

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