IPXV_Inst::ExecuteJS Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 9: Line 9:
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">HRESULT ExecuteJS([in]                      IPXV_Document*            pDoc,
 
<pre class="brush:cpp;gutter:false">HRESULT ExecuteJS([in]                      IPXV_Document*            pDoc,
                   [in]                      LPWSTR                    pScript,
+
                   [in]                      LPWSTR                    sScript,
 
                   [in]                      PXV_ActionTriggerClass    nClass,
 
                   [in]                      PXV_ActionTriggerClass    nClass,
 
                   [in]                      PXV_ActionTriggerSubclass  nSubclass,
 
                   [in]                      PXV_ActionTriggerSubclass  nSubclass,
Line 18: Line 18:
 
;pDoc
 
;pDoc
 
:[in]  Pointer to [[PXV:IPXV_Document|IPXV_Document]] object that specifies the target document.
 
:[in]  Pointer to [[PXV:IPXV_Document|IPXV_Document]] object that specifies the target document.
;pScript
+
;sScript
 
:[in]  The unicode string that contains Java Script.
 
:[in]  The unicode string that contains Java Script.
 
;nClass
 
;nClass

Revision as of 02:39, 4 June 2015


The method executes the specified Java Script.

Syntax

HRESULT ExecuteJS([in]                      IPXV_Document*             pDoc,
                  [in]                      LPWSTR                     sScript,
                  [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.
sScript
[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)] The 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, IPXV_Inst::CreateString