IPXV_Inst::ExecuteJS Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 3: Line 3:
 
{{#customTitle:IPXV_Inst::ExecuteJS Method}}
 
{{#customTitle:IPXV_Inst::ExecuteJS Method}}
 
{{#parentPage:PXV:IPXV_Inst#Methods|ExecuteJS|method}}
 
{{#parentPage:PXV:IPXV_Inst#Methods|ExecuteJS|method}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
The method executes the specified Java Script.
  
 
== Syntax ==
 
== Syntax ==
Line 18: Line 17:
 
== Parameters ==
 
== Parameters ==
 
;pDoc
 
;pDoc
:[in]  Pointer to [[PXV:IPXV_Document|IPXV_Document]].
+
:[in]  Pointer to [[PXV:IPXV_Document|IPXV_Document]] object that specifies the target document.
 
;pScript
 
;pScript
:[in]  Value of LPWSTR.
+
:[in]  The unicode string that contains Java Script.
 
;nClass
 
;nClass
:[in]  Value of [[PXV:PXV_ActionTriggerClass|PXV_ActionTriggerClass]].
+
:[in]  Value of [[PXV:PXV_ActionTriggerClass|PXV_ActionTriggerClass]]. In most cases you may pass <tt>PAEC_External</tt> value.
 
;nSubclass
 
;nSubclass
:[in]  Value of [[PXV:PXV_ActionTriggerSubclass|PXV_ActionTriggerSubclass]].
+
:[in]  Value of [[PXV:PXV_ActionTriggerSubclass|PXV_ActionTriggerSubclass]]. In most cases you may pass <tt>PAESC_Exec</tt> value.
 
;pActionData
 
;pActionData
:[in]  Pointer to IUnknown*.
+
:[in]  Pointer to IUnknown*. Used for special trigger class/subclass combinations. Not supported currently.
 
;pResult
 
;pResult
:[in, defaultvalue(NULL)]  Pointer to [[PXV:IString|IString]].
+
:[in, defaultvalue(NULL)]  Optional pointer to the [[PXV:IString|IString]] object. Specify it if you need any output from the script executing.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 17:08, 24 May 2015


The method executes the specified Java Script.

Syntax

HRESULT ExecuteJS([in]                      IPXV_Document*             pDoc,
                  [in]                      LPWSTR                     pScript,
                  [in]                      PXV_ActionTriggerClass     nClass,
                  [in]                      PXV_ActionTriggerSubclass  nSubclass,
                  [in]                      IUnknown*                  pActionData,
                  [in, defaultvalue(NULL)]  IString*                   pResult);

Parameters

pDoc
[in] Pointer to IPXV_Document object that specifies the target document.
pScript
[in] The unicode string that contains Java Script.
nClass
[in] Value of PXV_ActionTriggerClass. In most cases you may pass PAEC_External value.
nSubclass
[in] Value of PXV_ActionTriggerSubclass. In most cases you may pass PAESC_Exec value.
pActionData
[in] Pointer to IUnknown*. Used for special trigger class/subclass combinations. Not supported currently.
pResult
[in, defaultvalue(NULL)] Optional pointer to the IString object. Specify it if you need any output from the script executing.

Return Value

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

See Also

IPXV_Inst