IPXV_Plugin::ExportAdditionalData Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IPXV_Plugin::ExportAdditionalData Method}}
 
{{#customTitle:IPXV_Plugin::ExportAdditionalData Method}}
 +
{{#parentPage:PXV:IPXV_Plugin#Methods|ExportAdditionalData|method}}
 +
{{ToReview}}
  
 
Exports plugin's specific additional data (files, etc.) during exporting Editor's settings. Editor provides a temporary location where resources should be stored, and than copied them into the storage used for exporting entire editors settings.
 
Exports plugin's specific additional data (files, etc.) during exporting Editor's settings. Editor provides a temporary location where resources should be stored, and than copied them into the storage used for exporting entire editors settings.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT ExportAdditionalData([in] IAFS_Name* pPathToAppData, [in] IAFS_Name* pPathToUserData);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT ExportAdditionalData([in] IAFS_Name* pPathToAppData,
 +
                            [in] IAFS_Name* pPathToUserData);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''pPathToAppData''
+
;pPathToAppData
 
:[in]  Pointer to [[PXV:IAFS_Name|IAFS_Name]]. Specifies a path where application level resources should be stored.
 
:[in]  Pointer to [[PXV:IAFS_Name|IAFS_Name]]. Specifies a path where application level resources should be stored.
;''pPathToUserData''
+
;pPathToUserData
 
:[in]  Pointer to [[PXV:IAFS_Name|IAFS_Name]]. Specifies a path where user level resources should be stored.
 
:[in]  Pointer to [[PXV:IAFS_Name|IAFS_Name]]. Specifies a path where user level resources should be stored.
  
Line 17: Line 21:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IPXV_Plugin|IPXV_Plugin]], [[PXV:IPXV_Plugin_ImportAdditionalData|ImportAdditionalData]].
+
[[PXV:IPXV_Plugin|IPXV_Plugin]], [[PXV:IPXV_Plugin_ImportAdditionalData|ImportAdditionalData]]

Latest revision as of 04:06, 15 June 2015


Exports plugin's specific additional data (files, etc.) during exporting Editor's settings. Editor provides a temporary location where resources should be stored, and than copied them into the storage used for exporting entire editors settings.

Syntax

HRESULT ExportAdditionalData([in]  IAFS_Name*  pPathToAppData,
                             [in]  IAFS_Name*  pPathToUserData);

Parameters

pPathToAppData
[in] Pointer to IAFS_Name. Specifies a path where application level resources should be stored.
pPathToUserData
[in] Pointer to IAFS_Name. Specifies a path where user level resources should be stored.

Return Value

Returns S_OK if operation was successful or error code in other cases.

See Also

IPXV_Plugin, ImportAdditionalData