Important: The information in this document is obsolete and should not be used for new development.
HiliteWindow
Use theHiliteWindow
procedure to set a window's highlighting status.
PROCEDURE HiliteWindow (theWindow: WindowPtr; fHilite: Boolean);
- theWindow
- A pointer to the window's window record.
- fHilite
- A Boolean value that determines the highlighting status:
TRUE
highlights a window;FALSE
removes highlighting.DESCRIPTION
TheHiliteWindow
procedure sets a window's highlighting status to the specified state. If the value of thefHilite
parameter isTRUE
,HiliteWindow
highlights the specified window; if the specified window is already highlighted, the procedure has no effect.
If the value offHilite
isFALSE
,HiliteWindow
removes highlighting from the specified window; if the window is not already highlighted, the procedure has no effect.Your application doesn't normally need to call
HiliteWindow
. To make a window active, you can callSelectWindow
, which handles highlighting for you.