IPXC_ActionsList::Insert Method

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
Line 2: Line 2:
 
{{#customTitle:IPXC_ActionsList::Insert Method}}
 
{{#customTitle:IPXC_ActionsList::Insert Method}}
  
The method of interface of PDF-XChange Editor SDK.
+
Inserts an existing action into the actions list into given position. Note that the position value which is bigger or equal to the actions list size will insert the action as the last item of the actions list.
  
 
== Syntax ==
 
== Syntax ==
Line 9: Line 9:
 
== Parameters ==
 
== Parameters ==
 
;''nPos''
 
;''nPos''
:[in]  Value of ULONG.
+
:[in]  Position of the inserted action in the actions list.
 
;''pAction''
 
;''pAction''
:[in]  Pointer to [[PXV:IPXC_Action|IPXC_Action]].
+
:[in]  Pointer to [[PXV:IPXC_Action|IPXC_Action]] containing the action to be inserted into the actions list.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 00:52, 16 April 2015

Inserts an existing action into the actions list into given position. Note that the position value which is bigger or equal to the actions list size will insert the action as the last item of the actions list.

Syntax

HRESULT Insert([in] ULONG nPos, [in] IPXC_Action* pAction);

Parameters

nPos
[in] Position of the inserted action in the actions list.
pAction
[in] Pointer to IPXC_Action containing the action to be inserted into the actions list.

Return Value

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

See Also

See also IPXC_ActionsList.