IUIX_Cmd::AddShortcut2 Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
(One intermediate revision by one other user not shown) | |||
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}} | ||
− | |||
{{ToReview}} | {{ToReview}} | ||
− | + | 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 == | ||
− | <pre class="brush:cpp;gutter:false">HRESULT AddShortcut2([in] UIX_CmdAccel* | + | <pre class="brush:cpp;gutter:false">HRESULT AddShortcut2([in] UIX_CmdAccel* stA1, |
− | [in, defaultvalue(NULL)] UIX_CmdAccel* | + | [in, defaultvalue(NULL)] UIX_CmdAccel* stA2, |
[in, defaultvalue(-1)] LONG nPriority);</pre> | [in, defaultvalue(-1)] LONG nPriority);</pre> | ||
== Parameters == | == Parameters == | ||
− | ; | + | ;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 |
− | :[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 00: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.