Important: The information in this document is obsolete and should not be used for new development.
BringToFront
Use theBringToFront
procedure to bring a window to the front.
PROCEDURE BringToFront (theWindow: WindowPtr);
- theWindow
- A pointer to the window's window record.
DESCRIPTION
TheBringToFront
procedure puts the specified window at the beginning of the window list and redraws the window in front of all others on the screen. It does
not change the window's highlighting or make it active.Your application does not ordinarily call
BringToFront
. The user interface guidelines specify that the frontmost window should be the active window. To bring a window to the front and make it active, call theSelectWindow
procedure.