Switch to highlighted text mode.
Source position: crth.inc line 93
procedure HighVideo;  | 
HighVideo switches the output to highlighted text. (It sets the high intensity bit of the video attribute)
None.
  | 
Set text color.  | 
|
  | 
Set text background.  | 
|
  | 
Switch to low intensity colors.  | 
|
  | 
Return to normal (startup) modus.  | 
Program Example14; uses Crt; { Program to demonstrate the LowVideo, HighVideo, NormVideo functions. } begin LowVideo; WriteLn('This is written with LowVideo'); HighVideo; WriteLn('This is written with HighVideo'); NormVideo; WriteLn('This is written with NormVideo'); end.