IUIX_CmdBar::MoveBoxes Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IUIX_CmdBar::MoveBoxes Method}}
 
{{#customTitle:IUIX_CmdBar::MoveBoxes Method}}
{{#parentPage:PXV:IUIX_CmdBar|method}}
+
{{#parentPage:PXV:IUIX_CmdBar#Methods|MoveBoxes|method}}
{{ToWrite}}
+
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Moves command item boxes inside or between the command bars.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT MoveBoxes([in] LONG nIndex, [in] LONG nNewIndex, [in, defaultvalue(1)] LONG nCount, [in, defaultvalue(NULL)] IUIX_CmdBar* pNewBar);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT MoveBoxes([in]                     LONG         nIndex,
 +
                  [in]                     LONG         nNewIndex,
 +
                  [in, defaultvalue(1)]     LONG         nCount,
 +
                  [in, defaultvalue(NULL)] IUIX_CmdBar* pNewBar);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''nIndex''
+
;nIndex
:[in]  Value of LONG.
+
:[in]  Value of LONG containing the starting index of the command item boxes that should be moved.
;''nNewIndex''
+
;nNewIndex
:[in]  Value of LONG.
+
:[in]  Value of LONG containin the destination index where the boxes will be moved.
;''nCount''
+
;nCount
:[in, defaultvalue(1)]  Value of LONG.
+
:[in, defaultvalue(1)]  Value of LONG containing the number of boxes that will be moved.
;''pNewBar''
+
;pNewBar
:[in, defaultvalue(NULL)]  Pointer to [[PXV:IUIX_CmdBar|IUIX_CmdBar]].
+
:[in, defaultvalue(NULL)]  Pointer to [[PXV:IUIX_CmdBar|IUIX_CmdBar]] containing the command bar where the boxes will be moved. If NULL is specified then the boxes will be moved inside the current command bar.
  
 
== Return Value ==
 
== Return Value ==
Line 24: Line 27:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IUIX_CmdBar|IUIX_CmdBar]].
+
[[PXV:IUIX_CmdBar|IUIX_CmdBar]]

Latest revision as of 05:55, 25 March 2016


Moves command item boxes inside or between the command bars.

Syntax

HRESULT MoveBoxes([in]                      LONG          nIndex,
                  [in]                      LONG          nNewIndex,
                  [in, defaultvalue(1)]     LONG          nCount,
                  [in, defaultvalue(NULL)]  IUIX_CmdBar*  pNewBar);

Parameters

nIndex
[in] Value of LONG containing the starting index of the command item boxes that should be moved.
nNewIndex
[in] Value of LONG containin the destination index where the boxes will be moved.
nCount
[in, defaultvalue(1)] Value of LONG containing the number of boxes that will be moved.
pNewBar
[in, defaultvalue(NULL)] Pointer to IUIX_CmdBar containing the command bar where the boxes will be moved. If NULL is specified then the boxes will be moved inside the current command bar.

Return Value

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

See Also

IUIX_CmdBar