next up previous contents index
Next: InsLine Up: Procedures and Functions Previous: GotoXY

HighVideo

   

Declaration:

Procedure HighVideo ;

Description:

HighVideo switches the output to highlighted text. (It sets the high intensity bit of the video attribute)

Errors:

None.

See also:

TextColor, TextBackground, LowVideo, NormVideo

Example
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.



Michael Van Canneyt
Thu Sep 10 13:59:33 CEST 1998