Exemplo n.º 1
0
 public static extern int SetConsoleCursorInfo(HANDLE hConsoleOutput, ref CONSOLE_CURSOR_INFO lpConsoleCursorInfo);
Exemplo n.º 2
0
 public static extern bool SetConsoleCursorInfo(SafeHandle h, ref CONSOLE_CURSOR_INFO ci);
Exemplo n.º 3
0
 public void SetCursorInfo(int size, bool visible)
 {
     var ci = new CONSOLE_CURSOR_INFO() {
     dwSize = (uint)size,
     bVisible = visible
     };
     Api.Win32Check(Api.SetConsoleCursorInfo(Handle, ref ci));
 }
Exemplo n.º 4
0
 public static extern bool SetConsoleCursorInfo(SafeHandle h, ref CONSOLE_CURSOR_INFO ci);