Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The UserData parameter contains the data you passed into the UserData parameter of the ShowContextMenu method. It is passed for your convenience.

Example

Code Block
 TransferTransfer Param1 to ItemKey 
Transfer Param2 to UserData 

 BeginBegin Case 
   Case ItemKey EQ "CUT"  ; GoSub Cut 
   Case ItemKey EQ "COPY" ; GoSub Copy 
   Case ItemKey EQ "PASTE" ; GoSub Paste 
   Case ItemKey EQ "ZOOMIN" ; GoSub Zoom_In 
   Case ItemKey EQ "ZOOMOUT" ; GoSub Zoom_Out 
End Case

...