EMA-XPS Online
MAKE-BABYLON-SEPARATOR
MAKE-BABYLON-SEPARATOR
======================
syntax: (make-babylon-separator <interface>
<wname> <xpos> <ypos> <length> <orient>
<color> &rest <args>)
This function defines a separator-line on the window.
<wname> is the name for the line. <xpos> and <ypos>
give the position for the upper left end. <length>
is the length of the line. <orient> can be
"horizontal" or "vertikal". <color> is not supported
by Babylon v3. The separator-line will appear in the
interface.
example: >(defun make-kb-interface (interface)
(add-window-elements
interface
(list (make-babylon separator interface
"separator1" 10 300 600
"horizontal" nil))))
EMA-XPS Online