PDFAComplianceSaveAs Method |
Serializes the converted PDF/A document to a file on disk.
Namespace:
pdftron.PDF.PDFA
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SaveAs(
string file_path,
bool linearized
)
Public Sub SaveAs (
file_path As String,
linearized As Boolean
)
public:
virtual void SaveAs(
[InAttribute] String^ file_path,
[InAttribute] bool linearized
) sealed
function SaveAs(file_path, linearized);
Parameters
- file_path
- Type: SystemString
the file_path
- linearized
- Type: SystemBoolean
- An optional flag used to specify whether the resulting
PDF/A document should be web-optimized (linearized).
Remarks This method assumes that the first parameter passed in PDFACompliance
constructor (i.e. the convert parameter) is set to 'true'.
See Also