IUIX_Cmd::AddShortcut2 Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
Line 3: Line 3:
 
{{#customTitle:IUIX_Cmd::AddShortcut2 Method}}
 
{{#customTitle:IUIX_Cmd::AddShortcut2 Method}}
 
{{#parentPage:PXV:IUIX_Cmd#Methods|AddShortcut2|method}}
 
{{#parentPage:PXV:IUIX_Cmd#Methods|AddShortcut2|method}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Adds new double shortcut to the command's shortcuts list. If the current combination is already inside the commands list with the same priority then it will be replaced.
  
 
== Syntax ==
 
== Syntax ==
Line 15: Line 14:
 
== Parameters ==
 
== Parameters ==
 
;stA1
 
;stA1
:[in]  Pointer to [[PXV:UIX_CmdAccel|UIX_CmdAccel]].
+
:[in]  Pointer to [[PXV:UIX_CmdAccel|UIX_CmdAccel]] containing the key combination that should be pressed first.
 
;stA2
 
;stA2
:[in, defaultvalue(NULL)]  Pointer to [[PXV:UIX_CmdAccel|UIX_CmdAccel]].
+
:[in, defaultvalue(NULL)]  Pointer to [[PXV:UIX_CmdAccel|UIX_CmdAccel]] containing the key combination that shold be pressed after the first one.
 
;nPriority
 
;nPriority
:[in, defaultvalue(-1)]  Value of LONG.
+
:[in, defaultvalue(-1)]  Value of LONG containing the command's priority that acts as the index in the shortcuts list.
  
 
== Return Value ==
 
== Return Value ==

Latest revision as of 01:41, 24 March 2016


Adds new double shortcut to the command's shortcuts list. If the current combination is already inside the commands list with the same priority then it will be replaced.

Syntax

HRESULT AddShortcut2([in]                      UIX_CmdAccel*  stA1,
                     [in, defaultvalue(NULL)]  UIX_CmdAccel*  stA2,
                     [in, defaultvalue(-1)]    LONG           nPriority);

Parameters

stA1
[in] Pointer to UIX_CmdAccel containing the key combination that should be pressed first.
stA2
[in, defaultvalue(NULL)] Pointer to UIX_CmdAccel containing the key combination that shold be pressed after the first one.
nPriority
[in, defaultvalue(-1)] Value of LONG containing the command's priority that acts as the index in the shortcuts list.

Return Value

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

See Also

IUIX_Cmd