IUIX_CmdManager::ShowPopupMenu Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
Line 10: | Line 10: | ||
<pre class="brush:cpp;gutter:false">HRESULT ShowPopupMenu([in] IUIX_Obj* pOwner, | <pre class="brush:cpp;gutter:false">HRESULT ShowPopupMenu([in] IUIX_Obj* pOwner, | ||
[in] IUIX_CmdMenu* pMenu, | [in] IUIX_CmdMenu* pMenu, | ||
− | [in] RECT* | + | [in] RECT* stPos, |
[in, defaultvalue(0)] VARIANT_BOOL bReturnCmd, | [in, defaultvalue(0)] VARIANT_BOOL bReturnCmd, | ||
[in, defaultvalue(0)] LONG nPopupFlags, | [in, defaultvalue(0)] LONG nPopupFlags, | ||
Line 20: | Line 20: | ||
;pMenu | ;pMenu | ||
:[in] Pointer to [[PXV:IUIX_CmdMenu|IUIX_CmdMenu]] containing the popup menu that needs to be shown. | :[in] Pointer to [[PXV:IUIX_CmdMenu|IUIX_CmdMenu]] containing the popup menu that needs to be shown. | ||
− | ; | + | ;stPos |
:[in] Pointer to RECT containing the popup menu position. | :[in] Pointer to RECT containing the popup menu position. | ||
;bReturnCmd | ;bReturnCmd |
Latest revision as of 23:45, 19 May 2018
Shows popup menu in given position.
Syntax
HRESULT ShowPopupMenu([in] IUIX_Obj* pOwner, [in] IUIX_CmdMenu* pMenu, [in] RECT* stPos, [in, defaultvalue(0)] VARIANT_BOOL bReturnCmd, [in, defaultvalue(0)] LONG nPopupFlags, [out, retval] LONG* pResCmdID);
Parameters
- pOwner
- [in] Pointer to IUIX_Obj containing the menu's owner object.
- pMenu
- [in] Pointer to IUIX_CmdMenu containing the popup menu that needs to be shown.
- stPos
- [in] Pointer to RECT containing the popup menu position.
- bReturnCmd
- [in, defaultvalue(0)] Value of VARIANT_BOOL containing whether the result will be returned.
- nPopupFlags
- [in, defaultvalue(0)] Value of LONG containing the popup flags.
- pResCmdID
- [out, retval] Pointer to LONG containing the resulting command ID (that was clicked in the popup).
Return Value
Returns S_OK if operation was successful or error code in other cases.