RAD Studio
ContentsIndex
PreviousUpNext
normvideo

Header File 

conio.h  

Category 

Console I/O Routines 

Prototype 

void normvideo(void); 

Description 

Selects normal-intensity characters. 

normvideo selects normal characters by returning the text attribute (foreground and background) to the value it had when the program started. 

This function does not affect any characters currently on the screen, only those displayed by functions (such as cprintf) performing direct console output functions after normvideo is called.

Note: Do not use this function in Win32 GUI applications.
Return Value 

None. 

Example  

#include <conio.h>
int main(void)
{
    normvideo();
    cprintf("NORMAL Intensity Text\r\n");
 return 0;
}

Portability

POSIX 
Win32 
ANSI C 
ANSI C++ 
 
 
 
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!