Difference between revisions of "SET WINDOW OF BROWSE"
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) (→Example) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Purpose== | ==Purpose== | ||
Designate a window to display the BROWSE work surface | Designate a window to display the BROWSE work surface | ||
Line 15: | Line 8: | ||
==See Also== | ==See Also== | ||
− | [[ACTIVATE SCREEN]], [[ACTIVATE WINDOW]], [[CLEAR | + | [[ACTIVATE SCREEN]], [[ACTIVATE WINDOW]], [[CLEAR WINDOWS]], [[DEACTIVATE WINDOW]], [[DEFINE WINDOW]], [[HIDE WINDOW]], [[MODIFY MEMO]], [[MOVE WINDOW]], [[RELEASE WINDOWS]], [[RESIZE WINDOW]], [[RESTORE WINDOW]], [[SAVE WINDOW]], [[SHOW WINDOW]], [[SET COMMANDWINDOW]], [[SET ERRORWINDOW]], [[SET TRACEWINDOW]], [[SET WINDOW OF EDIT]], [[SET WINDOW OF MEMO]], [[SET WINDOW OF RELATION]], [[WEXIST()]], [[WINDOW()]], [[WONTOP()]], [[WOUTPUT()]], [[WVISIBLE()]] |
Line 27: | Line 20: | ||
==Example== | ==Example== | ||
− | < | + | <code lang="recital"> |
− | define window browse | + | define window browse; |
− | from 1,1 to 11,42; | + | from 1,1 to 11,42; |
− | title "BROWSE WINDOW" | + | title "BROWSE WINDOW" |
set window of browse to browse | set window of browse to browse | ||
use demo | use demo | ||
− | browse</ | + | browse |
− | + | </code> | |
==Products== | ==Products== | ||
− | Recital | + | Recital |
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Commands]] | [[Category:Commands]] | ||
[[Category:Set_Commands|WINDOW OF BROWSE]] | [[Category:Set_Commands|WINDOW OF BROWSE]] | ||
+ | [[Category:Screen Windows]] | ||
+ | [[Category:Screen Windows Set Commands]] |
Latest revision as of 10:11, 7 August 2018
Purpose
Designate a window to display the BROWSE work surface
Syntax
SET WINDOW OF BROWSE [IN <alias>] TO <window-name>
See Also
ACTIVATE SCREEN, ACTIVATE WINDOW, CLEAR WINDOWS, DEACTIVATE WINDOW, DEFINE WINDOW, HIDE WINDOW, MODIFY MEMO, MOVE WINDOW, RELEASE WINDOWS, RESIZE WINDOW, RESTORE WINDOW, SAVE WINDOW, SHOW WINDOW, SET COMMANDWINDOW, SET ERRORWINDOW, SET TRACEWINDOW, SET WINDOW OF EDIT, SET WINDOW OF MEMO, SET WINDOW OF RELATION, WEXIST(), WINDOW(), WONTOP(), WOUTPUT(), WVISIBLE()
Description
The SET WINDOW OF BROWSE command designates the window used to display the default BROWSE work surface when BROWSE is invoked. The window must be defined with the DEFINE WINDOW command, however, the window does not need to be activated, as the SET WINDOW OF BROWSE command will activate the window.
The optional IN <alias> qualifier may be used to specify the workarea that SET WINDOW OF BROWSE is to work in. If this qualifier is not used, the appropriate workarea must be selected before the SET WINDOW OF BROWSE command is issued.
The BROWSE work surface will be sized and positioned to the coordinates described with the DEFINE WINDOW command. If you wish the BROWSE work surface to appear inside the window, with the border intact, use the ACTIVATE WINDOW command.
Example
define window browse; from 1,1 to 11,42; title "BROWSE WINDOW" set window of browse to browse use demo browse
Products
Recital