Important: The information in this document is obsolete and should not be used for new development.
HiliteWindow
Use theHiliteWindowprocedure 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:
TRUEhighlights a window;FALSEremoves highlighting.DESCRIPTION
TheHiliteWindowprocedure sets a window's highlighting status to the specified state. If the value of thefHiliteparameter isTRUE,HiliteWindowhighlights the specified window; if the specified window is already highlighted, the procedure has no effect.
If the value offHiliteisFALSE,HiliteWindowremoves 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.