TdxPSPDFReportExportOptions.SaveToRegistry(string) Method
In This Article
Saves PDF export settings to a specified registry path.
#Declaration
Delphi
procedure SaveToRegistry(const APath: string);
#Parameters
Name | Type |
---|---|
APath | string |
#Remarks
Call this procedure and pass a target registry path as the APath parameter to save PDF export options. Then, you can call the LoadFromRegistry procedure to load the saved settings.
A TdxPSEngineController component automatically calls the SaveToRegistry procedure when the “PDF Export Options” dialog is closed by an OK button click or an Enter keystroke if the following conditions are met:
The component’s OptionsStoring.StorageType property is set to dxstRegistry.
The component’s OptionsStoring.RegistryPath property specifies a target registry path to store the settings.
See Also