IUIX_Cmd::ModifyShortcut2 Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IUIX_Cmd::ModifyShortcut2 Method}}
 
{{#customTitle:IUIX_Cmd::ModifyShortcut2 Method}}
{{#parentPage:PXV:IUIX_Cmd|ModifyShortcut2 Method|method}}
+
{{#parentPage:PXV:IUIX_Cmd#Methods|ModifyShortcut2|method}}
{{ToWrite}}
+
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Modifies shortcut into a double shortcut in the shortcuts list.
  
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">HRESULT ModifyShortcut2([in]  LONG          nIndex,
 
<pre class="brush:cpp;gutter:false">HRESULT ModifyShortcut2([in]  LONG          nIndex,
                         [in]  UIX_CmdAccel*  pA1,
+
                         [in]  UIX_CmdAccel*  stA1,
                         [in]  UIX_CmdAccel*  pA2);</pre>
+
                         [in]  UIX_CmdAccel*  stA2);</pre>
  
 
== Parameters ==
 
== Parameters ==
 
;nIndex
 
;nIndex
:[in]  Value of LONG.
+
:[in]  Value of LONG containing the shortcut's index in the shortcut list.
;pA1
+
;stA1
:[in]  Pointer to [[PXV:UIX_CmdAccel|UIX_CmdAccel]].
+
:[in]  Pointer to [[PXV:UIX_CmdAccel|UIX_CmdAccel]] containing the first part of the double shortcut.
;pA2
+
;stA2
:[in]  Pointer to [[PXV:UIX_CmdAccel|UIX_CmdAccel]].
+
:[in]  Pointer to [[PXV:UIX_CmdAccel|UIX_CmdAccel]] containing the second part of the double shortcut.
  
 
== Return Value ==
 
== Return Value ==
Line 24: Line 24:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IUIX_Cmd|IUIX_Cmd]].
+
[[PXV:IUIX_Cmd|IUIX_Cmd]]

Latest revision as of 01:59, 24 March 2016


Modifies shortcut into a double shortcut in the shortcuts list.

Syntax

HRESULT ModifyShortcut2([in]  LONG           nIndex,
                        [in]  UIX_CmdAccel*  stA1,
                        [in]  UIX_CmdAccel*  stA2);

Parameters

nIndex
[in] Value of LONG containing the shortcut's index in the shortcut list.
stA1
[in] Pointer to UIX_CmdAccel containing the first part of the double shortcut.
stA2
[in] Pointer to UIX_CmdAccel containing the second part of the double shortcut.

Return Value

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

See Also

IUIX_Cmd