IUIX_CmdCollection::DeleteItems Method

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
 
(7 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IUIX_CmdCollection::DeleteItems Method}}
 
{{#customTitle:IUIX_CmdCollection::DeleteItems Method}}
 +
{{#parentPage:PXV:IUIX_CmdCollection#Methods|DeleteItems|method}}
 +
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Removes commands from the command collection with given [[PXV:UIX_DeleteCmdItemsFlags|parameters]].
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT DeleteItems([in] IUIX_Cmd* pCmd, [in, optional] LONG nFlags);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT DeleteItems([in]                   IUIX_Cmd* pCmd,
 +
                    [in, defaultvalue(0)] LONG       nFlags);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''pCmd''
+
;pCmd
:[in]  Pointer to [[PXV:IUIX_Cmd|IUIX_Cmd]].
+
:[in]  Pointer to [[PXV:IUIX_Cmd|IUIX_Cmd]] containing the command that needs to be removed.
;''nFlags''
+
;nFlags
:[in, optional]  Value of LONG.
+
:[in, defaultvalue(0)]  Value of LONG containing the [[PXV:UIX_DeleteCmdItemsFlags|parameters]] that should be used when removing given command.
  
 
== Return Value ==
 
== Return Value ==
Line 17: Line 21:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IUIX_CmdCollection|IUIX_CmdCollection]].
+
[[PXV:IUIX_CmdCollection|IUIX_CmdCollection]]

Latest revision as of 05:24, 4 April 2016


Removes commands from the command collection with given parameters.

Syntax

HRESULT DeleteItems([in]                   IUIX_Cmd*  pCmd,
                    [in, defaultvalue(0)]  LONG       nFlags);

Parameters

pCmd
[in] Pointer to IUIX_Cmd containing the command that needs to be removed.
nFlags
[in, defaultvalue(0)] Value of LONG containing the parameters that should be used when removing given command.

Return Value

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

See Also

IUIX_CmdCollection