IPXV_Inst::PerformActions Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 8: Line 8:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT PerformActions([in]  IPXV_Document*            pDoc,
+
<pre class="brush:cpp;gutter:false">HRESULT PerformActions([in]  IPXV_Document*            Doc,
                       [in]  IPXC_ActionsList*          pAList,
+
                       [in]  IPXC_ActionsList*          AList,
                       [in]  PXV_ActionTriggerClass    nClass,
+
                       [in]  PXV_ActionTriggerClass    Class,
                       [in]  PXV_ActionTriggerSubclass  nSubclass,
+
                       [in]  PXV_ActionTriggerSubclass  Subclass,
                       [in]  IUnknown*                  pActionData);</pre>
+
                       [in]  IUnknown*                  ActionData);</pre>
  
 
== Parameters ==
 
== Parameters ==
;pDoc
+
;Doc
 
:[in]  Pointer to [[PXV:IPXV_Document|IPXV_Document]].
 
:[in]  Pointer to [[PXV:IPXV_Document|IPXV_Document]].
;pAList
+
;AList
 
:[in]  Pointer to [[PXV:IPXC_ActionsList|IPXC_ActionsList]].
 
:[in]  Pointer to [[PXV:IPXC_ActionsList|IPXC_ActionsList]].
;nClass
+
;Class
 
:[in]  Value of [[PXV:PXV_ActionTriggerClass|PXV_ActionTriggerClass]].
 
:[in]  Value of [[PXV:PXV_ActionTriggerClass|PXV_ActionTriggerClass]].
;nSubclass
+
;Subclass
 
:[in]  Value of [[PXV:PXV_ActionTriggerSubclass|PXV_ActionTriggerSubclass]].
 
:[in]  Value of [[PXV:PXV_ActionTriggerSubclass|PXV_ActionTriggerSubclass]].
;pActionData
+
;ActionData
 
:[in]  Pointer to IUnknown* - addional data for executing actions. May contain special context of executing.
 
:[in]  Pointer to IUnknown* - addional data for executing actions. May contain special context of executing.
  

Revision as of 07:32, 12 June 2015


Performs the specified list of PDF-actions.

Syntax

HRESULT PerformActions([in]  IPXV_Document*             Doc,
                       [in]  IPXC_ActionsList*          AList,
                       [in]  PXV_ActionTriggerClass     Class,
                       [in]  PXV_ActionTriggerSubclass  Subclass,
                       [in]  IUnknown*                  ActionData);

Parameters

Doc
[in] Pointer to IPXV_Document.
AList
[in] Pointer to IPXC_ActionsList.
Class
[in] Value of PXV_ActionTriggerClass.
Subclass
[in] Value of PXV_ActionTriggerSubclass.
ActionData
[in] Pointer to IUnknown* - addional data for executing actions. May contain special context of executing.

Return Value

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

See Also

IPXV_Inst