normvideo

From RAD Studio
Jump to: navigation, search

Go Up to conio.h Index

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++

+