Important: The information in this document is obsolete and should not be used for new development.
SendBehind
Use theSendBehindprocedure to move one window behind another.
PROCEDURE SendBehind (theWindow, behindWindow: WindowPtr);
- theWindow
- A pointer to the window to be moved.
- behindWindow
- A pointer to the window that is to be in front of the moved window.
DESCRIPTION
TheSendBehindprocedure moves the window pointed to by the parametertheWindowbehind the window pointed to by the parameterbehindWindow. If the move exposes previously obscured windows or parts of windows,SendBehindredraws the frames as necessary and generates the appropriate update events to
have any newly exposed content areas redrawn.If the value of
behindWindowisNIL,SendBehindsends the window to be moved behind all other windows on the desktop. If the window to be moved is the active window,SendBehindremoves its highlighting, highlights the newly exposed frontmost window, and generates the appropriate activate events.
- Note
- Do not use
SendBehindto deactivate a window after you've made a new window active with theSelectWindowprocedure. TheSelectWindowprocedure automatically deactivates the previously active window.![]()