<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > MENUs > PopUpMenu |
Description
Show a pop up menu at current mouse position
Syntax
n = PopUpMenu(hWnd, hMenu, lFlags)
Returns
Number
Parameters
Name |
Type |
Optional |
Meaning |
hWnd |
Number |
No |
Handle of the dialog that will be parent of the popup menu |
hMenu |
Number |
No |
Handle of a menu created with MENU NEW POPUP TO ... |
lFlags |
Number |
Yes |
Set of flags that specify how to show the pop up menu This member can have one or more of the following flags set: %TPM_LEFTBUTTON %TPM_RIGHTBUTTON %TPM_LEFTALIGN %TPM_CENTERALIGN %TPM_RIGHTALIGN %TPM_TOPALIGN %TPM_VCENTERALIGN %TPM_BOTTOMALIGN %TPM_HORIZONTAL %TPM_VERTICAL %TPM_NONOTIFY %TPM_RETURNCMD %TPM_RECURSE %TPM_HORPOSANIMATION %TPM_HORNEGANIMATION %TPM_VERPOSANIMATION %TPM_VERNEGANIMATION %TPM_NOANIMATION %TPM_LAYOUTRTL
If this member is zero, the following default value will be used: %TPM_TOPALIGN or %TPM_LEFTALIGN |
Remarks
Restrictions
See also
Examples