Difference between revisions of "SET COMMANDWINDOW"

From Recital Documentation Wiki
Jump to: navigation, search
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=SET COMMANDWINDOW=
 
 
 
==Class==
 
Screen Windows
 
 
 
 
==Purpose==
 
==Purpose==
 
Enable or disable command windows
 
Enable or disable command windows
Line 15: Line 8:
  
 
==See Also==
 
==See Also==
ACTIVATE SCREEN, ACTIVATE WINDOW, CLEAR WINDOWS, DEACTIVATE WINDOW, DEFINE WINDOW, HIDE WINDOW, MOVE WINDOW, MODIFY MEMO, RELEASE WINDOWS, RESIZE WINDOW, RESTORE WINDOW, SAVE WINDOW, SHOW WINDOW, SET ERRORWINDOW, SET STATUS, SET TRACEWINDOW, SET WINDOW OF EDIT, SET WINDOW OF MEMO, WROWS(), WCOLS(), WEXIST(), WVISIBLE(), WONTOP(), WOUTPUT()
+
[[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 ERRORWINDOW]], [[SET STATUS]], [[SET TRACEWINDOW]], [[SET WINDOW OF EDIT]], [[SET WINDOW OF MEMO]], [[WCOLS()]], [[WEXIST()]], [[WONTOP()]], [[WOUTPUT()]], [[WROWS()]], [[WVISIBLE()]]
  
  
Line 23: Line 16:
  
 
==Example==
 
==Example==
<pre>
+
<code lang="recital">
 
define window command;
 
define window command;
from 17,45 to 23,79;
+
  from 17,45 to 23,79;
color w/r;
+
  color w/r;
panel;
+
  panel;
shadow;
+
  shadow;
float;
+
  float;
grow;
+
  grow;
command
+
  command
set commandwindow on</pre>
+
set commandwindow on</code>
  
  
 
==Products==
 
==Products==
Recital Terminal Developer
+
Recital  
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Commands]]
 
[[Category:Commands]]
[[Category:Set_Commands]]
+
[[Category:Set_Commands|COMMANDWINDOW]]
 +
[[Category:Screen Windows]]
 +
[[Category:Screen Windows Set Commands]]

Latest revision as of 16:59, 12 November 2009

Purpose

Enable or disable command windows


Syntax

SET COMMANDWINDOW ON | OFF | (<expL>)


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 ERRORWINDOW, SET STATUS, SET TRACEWINDOW, SET WINDOW OF EDIT, SET WINDOW OF MEMO, WCOLS(), WEXIST(), WONTOP(), WOUTPUT(), WROWS(), WVISIBLE()


Description

The SET COMMANDWINDOW command is used to enable or disable the use of command windows. A window is an area of the screen designated for output and input. There is no limit to the number of windows you may define. Windows are defined with the DEFINE WINDOW command, and are activated with the ACTIVATE WINDOW command. A command window is a window that automatically activates itself and displays the interactive command prompt. When active, command windows allow the input of interactive commands. When SET COMMANDWINDOW is ON, a pre-defined command window automatically activates when control returns to the interactive command prompt. When SET COMMANDWINDOW is OFF, the command window does display, and the interactive prompt appears in full screen mode rather than in a window.


Example

define window command;
  from 17,45 to 23,79;
  color w/r;
  panel;
  shadow;
  float;
  grow;
  command
set commandwindow on


Products

Recital