Arbortext Command Language > Functions by Alphabetical Listing > java_console
  
java_console
java_console ([show[, geometry]])
If the show parameter is non-zero or omitted, this function displays the Java Console window. If show is 0, it closes the Java Console.
You can specify the size and position of the Java Console window using the geometry parameter. The geometry parameter is a string of the form WxH+X+Y, where W and H are the width and height of the window in pixels, and X and Y give the location of the upper left corner of the window. Negative X and Y values give the location of lower right corner of the window with respect to the bottom right corner of the screen. The format of the string allows just the width and height or position to be set by omitting fields. If the Java Console is already displayed, then you can change the size and position of the window by specifying geometry.
For example,
java_console(1, "500x300-50-50")
java_console(1, "+3+3")
java_console(0)
Related Topics
java_init function