IPXV_Inst::ShowEditActionListDlg Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 3: Line 3:
 
{{#customTitle:IPXV_Inst::ShowEditActionListDlg Method}}
 
{{#customTitle:IPXV_Inst::ShowEditActionListDlg Method}}
 
{{#parentPage:PXV:IPXV_Inst#Methods|ShowEditActionListDlg|method}}
 
{{#parentPage:PXV:IPXV_Inst#Methods|ShowEditActionListDlg|method}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
The method displays for end-user the dialog that provides an features to edit/view the specified list of PDF-actions.  
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT ShowEditActionListDlg([in]                  IPXC_Document*      pIRDoc,
+
<pre class="brush:cpp;gutter:false">HRESULT ShowEditActionListDlg([in]                  IPXC_Document*      pDoc,
                               [in, out]             IPXC_ActionsList**  ppAList,
+
                               [in]                   IPXC_ActionsList**  pActions,
                               [in, defaultvalue(0)]  HANDLE_T            hWndParent);</pre>
+
                               [in, defaultvalue(0)]  HANDLE_T            hWndParent,
 +
                              [out, retval]          IPXC_ActionsList**  ppNewActions);</pre>
  
 
== Parameters ==
 
== Parameters ==
;pIRDoc
+
;pDoc
:[in]  Pointer to [[PXV:IPXC_Document|IPXC_Document]].
+
:[in]  Pointer to source [[PXV:IPXC_Document|IPXC_Document]] object.
 
;ppAList
 
;ppAList
:[in, out]  Pointer to [[PXV:IPXC_ActionsList|IPXC_ActionsList]].
+
:[in]  Pointer to [[PXV:IPXC_ActionsList|IPXC_ActionsList]] to be edited/viewed.
 
;hWndParent
 
;hWndParent
:[in, defaultvalue(0)] Value of HANDLE_T.
+
:[in, defaultvalue(0)]   The optional parameter containing the handle of parent window. You may pass NULL here.
 +
;hWndParent
 +
:[out, retval]  Returns pointer to the new [[PXV:IPXC_ActionsList|IPXC_ActionsList]] object.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 17:19, 26 May 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            hWndParent,
                              [out, retval]          IPXC_ActionsList**  ppNewActions);

Parameters

pDoc
[in] Pointer to source IPXC_Document object.
ppAList
[in] Pointer to IPXC_ActionsList to be edited/viewed.
hWndParent
[in, defaultvalue(0)] The optional parameter containing the handle of parent window. You may pass NULL here.
hWndParent
[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