?? textinfo.c
字號:
#include <conio.h>
void main(void)
{
struct text_info text;
gettextinfo(&text);
cprintf("Screen coordinates %d,%d to %d,%d\r\n",
text.wintop, text.winleft, text.winbottom, text.winright);
cprintf("Text attribute %d Normal attribute %d\r\n",
text.attribute, text.normattr);
cprintf("Screen height %d width %d\r\n", text.screenheight,
text.screenwidth);
cprintf("Cursor position was row %d column %d\r\n",
text.cury, text.curx);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -