- FREN_E_INVALID_CREATION_DATE_FORMAT;
- FREN_E_INVALID_MODIFICATION_DATE_FORMAT.
- Get the DocumentContentInfoWritingParams subobject of the export parameters object for your output format:
- For PDF export, you can use the PDFFeatures property of the PDFExportParams object to access the PDFExportFeatures object, then use its MetaDataWritingParams property to get the DocumentContentInfoWritingParams object.
- For XPS export, use the MetaDataWritingParams property of the XPSExportParams object.
- The WriteCreationDate and WriteModificationDate properties of the DocumentContentInfoWritingParams object specify which dates should be saved into the output document. In this case, you may use the WD_No value to disable date saving and the WD_Current value to use the current date.
- Restart the document export using, for example, the Export method of the FRDocument object, passing the parameters object you have just set up as the last input parameter.
- Access the DocumentСontentInfo object using the DocumentContentInfo property of the FRDocument object.
- Change the date in the CreationDate or ModificationDate property of the DocumentСontentInfo object.
- Restart the document export with the Export method of the FRDocument object.
Samples
The code samples provided in this topic are Windows -specific.
C++ code
C++ code
C# code
C# code
