IPXV_Inst::ShowEditActionListDlg Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 10: Line 10:
 
<pre class="brush:cpp;gutter:false">HRESULT ShowEditActionListDlg([in]                  IPXC_Document*      pDoc,
 
<pre class="brush:cpp;gutter:false">HRESULT ShowEditActionListDlg([in]                  IPXC_Document*      pDoc,
 
                               [in]                  IPXC_ActionsList*  pActions,
 
                               [in]                  IPXC_ActionsList*  pActions,
                               [in, defaultvalue(0)]  HANDLE_T            hWndParent,
+
                               [in, defaultvalue(0)]  HANDLE_T            nWndParent,
                               [out, retval]          IPXC_ActionsList**  ppNewActions);</pre>
+
                               [out, retval]          IPXC_ActionsList**  pNewActions);</pre>
  
 
== Parameters ==
 
== Parameters ==
Line 18: Line 18:
 
;pActions
 
;pActions
 
:[in]  Pointer to [[PXV:IPXC_ActionsList|IPXC_ActionsList]] to be edited/viewed.
 
:[in]  Pointer to [[PXV:IPXC_ActionsList|IPXC_ActionsList]] to be edited/viewed.
;hWndParent
+
;nWndParent
 
:[in, defaultvalue(0)]  The optional parameter that specifies the handle of parent window.
 
:[in, defaultvalue(0)]  The optional parameter that specifies the handle of parent window.
;ppNewActions
+
;pNewActions
 
:[out, retval]  Returns pointer to the new [[PXV:IPXC_ActionsList|IPXC_ActionsList]] object.
 
:[out, retval]  Returns pointer to the new [[PXV:IPXC_ActionsList|IPXC_ActionsList]] object.
 
  
 
== Return Value ==
 
== Return Value ==

Revision as of 02:40, 4 June 2015


The method displays for end-user the dialog that provides an features to edit/view the specified list of PDF-actions.

Syntax

HRESULT ShowEditActionListDlg([in]                   IPXC_Document*      pDoc,
                              [in]                   IPXC_ActionsList*   pActions,
                              [in, defaultvalue(0)]  HANDLE_T            nWndParent,
                              [out, retval]          IPXC_ActionsList**  pNewActions);

Parameters

pDoc
[in] Pointer to source IPXC_Document object.
pActions
[in] Pointer to IPXC_ActionsList to be edited/viewed.
nWndParent
[in, defaultvalue(0)] The optional parameter that specifies the handle of parent window.
pNewActions
[out, retval] Returns pointer to the new IPXC_ActionsList object.

Return Value

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

See Also

IPXV_Inst