Important: The information in this document is obsolete and should not be used for new development.
HideWindow
Use theHideWindow
procedure to make a window invisible.
PROCEDURE HideWindow (theWindow: WindowPtr);
- theWindow
- A pointer to the window's window record.
DESCRIPTION
TheHideWindow
procedure make a visible window invisible. If you hide the frontmost window,HideWindow
removes the highlighting, brings the window behind it to
the front, highlights the new frontmost window, and generates the appropriate
activate events.To reverse the actions of
HideWindow
, you must call bothShowWindow
, to make the window visible, andSelectWindow
, to select it.SEE ALSO
See Listing 4-16 on page 4-60 for an example that callsHideWindow
to temporarily
hide a dialog box window when the user closes it. See Listing 4-18 on page 4-64 for the companion example that redisplays the window later.