Next Previous Up Top Contents Index

9.4 DUIM-Frames Module

lower-frame

Generic function

Summary

Lowers the specified frame to the bottom of the stack of visible windows.

Signature

lower-frame frame => ()

Arguments

frame
An instance of type <frame>.

Values

None

Library

duim-frames

Module

duim-frames

Description

Lowers frame to the bottom of the stack of visible windows. After calling this function, frame will appear beneath any occluding windows that may be on the screen.

Example

The following example creates and displays a simple frame, then lowers it.

define variable *frame* = 
   make(<simple-frame>, title: "A frame", 
        layout: make(<button>));
start-frame(*frame*);
lower-frame(*frame*);

See also

deiconify-frame, page 744

destroy-frame, page 744

exit-frame, page 785

iconify-frame, page 823

raise-frame, page 841


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index