delline
conio.h:インデックス への移動
ヘッダーファイル
conio.h
カテゴリ
コンソール入出力ルーチン
プロトタイプ
void delline(void);
説明
テキストウィンドウ内の行を削除します。
delline は,カーソルがある行を削除し,それ以降のすべての行を 1 行上に移動します。delline は,現在アクティブなテキストウィンドウで動作します。
メモ: Win32 GUI アプリケーションでは,この関数を使用しないでください。
戻り値
なし。
例
#include <conio.h>
int main(void)
{
clrscr();
cprintf("The function DELLINE deletes the line containing the\r\n");
cprintf("cursor and moves all lines below it one line up.\r\n");
cprintf("DELLINE operates within the currently active text\r\n");
cprintf("window. Press any key to continue . . .");
gotoxy(1,2); /* カーソルを 2 行めの最初の列に移動します */
getch();
delline();
getch();
return 0;
}
移植性
POSIX | Win32 | ANSI C | ANSI C++ |
---|---|---|---|
+ |