Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
SavePdfA Property
See Also 
Leadtools.Codecs Namespace > CodecsPdfSaveOptions Class : SavePdfA Property



Gets or sets a value indicating whether the PDF file should be saved as PDF/A.

Syntax

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

Return Value

true to save the file as PDF/A; otherwise it will be saved as PDF.

Example

For an example, refer to CodecsPdfOptions.

Remarks

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: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also