IUIX_CmdBar::FlatInsertItem2 Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IUIX_CmdBar::FlatInsertItem2 Method}}
 
{{#customTitle:IUIX_CmdBar::FlatInsertItem2 Method}}
{{#parentPage:PXV:IUIX_CmdBar|method}}
+
{{#parentPage:PXV:IUIX_CmdBar#Methods|FlatInsertItem2|method}}
{{ToWrite}}
+
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Inserts command in the command bar's command item box by given [[PXV:IUIX_CmdItem_FlatIndex|FlatIndex]].
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT FlatInsertItem2([in] LONG nCmdID, [in, defaultvalue(-1)] LONG nFlatIndexBefore, [in, defaultvalue(0)] LONG nNewStyle, [in, defaultvalue(0)] LONG nNewStyleMask, [out, retval, defaultvalue(NULL)] IUIX_CmdItem** ppItem);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT FlatInsertItem2([in]                               LONG           nCmdID,
 +
                        [in, defaultvalue(-1)]             LONG           nFlatIndexBefore,
 +
                        [in, defaultvalue(0)]             LONG           nNewStyle,
 +
                        [in, defaultvalue(0)]             LONG           nNewStyleMask,
 +
                        [out, retval, defaultvalue(NULL)] IUIX_CmdItem** pItem);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''nCmdID''
+
;nCmdID
:[in]  Value of LONG.
+
:[in]  Value of LONG containing the ID of the command that should be inserted.
;''nFlatIndexBefore''
+
;nFlatIndexBefore
:[in, defaultvalue(-1)]  Value of LONG.
+
:[in, defaultvalue(-1)]  Value of LONG containing the [[PXV:IUIX_CmdItem_FlatIndex|FlatIndex]] before which the command would be inserted.
;''nNewStyle''
+
;nNewStyle
:[in, defaultvalue(0)]  Value of LONG.
+
:[in, defaultvalue(0)]  Value of LONG containing the [[PXV:UIX_CmdItemStyleFlags|command item's style]].
;''nNewStyleMask''
+
;nNewStyleMask
:[in, defaultvalue(0)]  Value of LONG.
+
:[in, defaultvalue(0)]  Value of LONG containing the style mask.
;''ppItem''
+
;pItem
:[out, retval, defaultvalue(NULL)]  Pointer to [[PXV:IUIX_CmdItem|IUIX_CmdItem]].
+
:[out, retval, defaultvalue(NULL)]  Pointer to [[PXV:IUIX_CmdItem|IUIX_CmdItem]] containing the newly inserted command item.
  
 
== Return Value ==
 
== Return Value ==
Line 26: Line 30:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IUIX_CmdBar|IUIX_CmdBar]].
+
[[PXV:IUIX_CmdBar|IUIX_CmdBar]]

Latest revision as of 03:52, 25 March 2016


Inserts command in the command bar's command item box by given FlatIndex.

Syntax

HRESULT FlatInsertItem2([in]                               LONG            nCmdID,
                        [in, defaultvalue(-1)]             LONG            nFlatIndexBefore,
                        [in, defaultvalue(0)]              LONG            nNewStyle,
                        [in, defaultvalue(0)]              LONG            nNewStyleMask,
                        [out, retval, defaultvalue(NULL)]  IUIX_CmdItem**  pItem);

Parameters

nCmdID
[in] Value of LONG containing the ID of the command that should be inserted.
nFlatIndexBefore
[in, defaultvalue(-1)] Value of LONG containing the FlatIndex before which the command would be inserted.
nNewStyle
[in, defaultvalue(0)] Value of LONG containing the command item's style.
nNewStyleMask
[in, defaultvalue(0)] Value of LONG containing the style mask.
pItem
[out, retval, defaultvalue(NULL)] Pointer to IUIX_CmdItem containing the newly inserted command item.

Return Value

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

See Also

IUIX_CmdBar