Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Borland C++ 2.x ( with Turbo C ) - <b>lowvideo() set text to low intensity</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 lowvideo()              Set Text to Low Intensity

 #include   <conio.h>

 void       lowvideo(void);

    lowvideo() clears the high intensity bit of the currently selected
    forground color. All subsequent characters written to the screen will
    be displayed at low intensity.

       Returns:     Nothing.

   Portability:     IBM PC and compatibles only.

   -------------------------------- Example ---------------------------------
    The following statements print out text at high, low and normal
    intensity.

           #include <conio.h>

           main()
           {
               gotoxy(1,1);
               cputs("Original intensity.\n");
               highvideo();
               cputs("High intensity.\n");
               lowvideo();
               cputs("Low intensity.\n");
               normvideo();
               cputs("Original intensity.");
           }


See Also: gettextinfo() highvideo() normvideo() textattr()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson