IPXV_Inst::AddPlugin Method

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
Line 2: Line 2:
 
{{#customTitle:IPXV_Inst::AddPlugin Method}}
 
{{#customTitle:IPXV_Inst::AddPlugin Method}}
  
The method of interface of PDF-XChange Editor SDK.
+
Adds a plugin object to the instance.
  
 
== Syntax ==
 
== Syntax ==
Line 9: Line 9:
 
== Parameters ==
 
== Parameters ==
 
;''pPlugin''
 
;''pPlugin''
:[in]  Pointer to [[PXV:IPXV_Plugin|IPXV_Plugin]].
+
:[in]  Pointer to [[PXV:IPXV_Plugin|IPXV_Plugin]] object which should be added to the instance. Here only its '''Setup''' function is called. The function returns the value returned from plugin's '''Setup''' function.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 03:37, 21 March 2015

Adds a plugin object to the instance.

Syntax

HRESULT AddPlugin([in] IPXV_Plugin* pPlugin);

Parameters

pPlugin
[in] Pointer to IPXV_Plugin object which should be added to the instance. Here only its Setup function is called. The function returns the value returned from plugin's Setup function.

Return Value

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

See Also

See also IPXV_Inst.