Difference between revisions of "MENU FRAME"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Helengeorge (Talk | contribs) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Purpose== | ==Purpose== | ||
Draw a menu frame | Draw a menu frame | ||
Line 26: | Line 19: | ||
==Example== | ==Example== | ||
<code lang="recital"> | <code lang="recital"> | ||
− | + | menu frame at 10,10 to 15,18 label "Options" | |
@13,11 menu "Exit"; | @13,11 menu "Exit"; | ||
− | help "Exit the system." | + | help "Exit the system." |
@14,11 menu "Browse"; | @14,11 menu "Browse"; | ||
− | command "browse"; | + | command "browse"; |
− | help "Browse the table." | + | help "Browse the table." |
menu | menu | ||
</code> | </code> | ||
Line 37: | Line 30: | ||
==Products== | ==Products== | ||
− | Recital | + | Recital |
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Commands]] | [[Category:Commands]] | ||
+ | [[Category:Menus]] | ||
+ | [[Category:Menus Commands]] |
Latest revision as of 15:26, 12 November 2009
Purpose
Draw a menu frame
Syntax
MENU FRAME AT <expN1>,<expN2> TO <expN3>,<expN4>
LABEL <expC>
See Also
@...MENU, MENU AT, MENU COMMAND, MENU FIELDS, MENU FILES, MENU FORMAT, MENU QUERY, MENU SCOPE, MENU(), MENUITEM()
Description
The MENU FRAME command draws a box with the specified label <expC> and can be used to 'frame' a menu. The frame is positioned at the coordinates specified in <expN1> to <expN4>.
Example
menu frame at 10,10 to 15,18 label "Options" @13,11 menu "Exit"; help "Exit the system." @14,11 menu "Browse"; command "browse"; help "Browse the table." menu
Products
Recital