RetrieveCustomDataToFile
Description
Retrieves custom data from the PDF that was previously stored with StoreCustomDataFromString or StoreCustomDataFromFile. The retrieved data is written to the specified file.
Syntax
Delphi
function TDebenuPDFLibrary1811.RetrieveCustomDataToFile(Key, FileName: WideString;
Location: Integer): Integer;
ActiveX
Function DebenuPDFLibrary1811.PDFLibrary::RetrieveCustomDataToFile(Key As String,
FileName As String, Location As Long) As Long
DLL
int DPLRetrieveCustomDataToFile(int InstanceID, wchar_t * Key, wchar_t * FileName,
int Location)
Parameters
Key | The key that the data was stored under. If the location is the Document Catalog then the key must have a special prefix assigned to you by Adobe to avoid conflicts with other software. If the location is the Document Information Dictionary any key can be used but should be chosen with care so they make sense to the user. |
FileName | The path and file name of the file to save the retrieved data to. |
Location |
1 = Retrieve the data from the Document Information Dictionary 2 = Retrieve the data from the Document Catalog |
Return values
0 | There was no data stored in the specified key, or the file to save the data to already exists and could not be overwritten |
1 | The data was retrieved and written to the specified file successfully |