Beispiel #1
0
 public static extern int SetConsoleCursorInfo(HANDLE hConsoleOutput, ref CONSOLE_CURSOR_INFO lpConsoleCursorInfo);
Beispiel #2
0
 public static extern bool SetConsoleCursorInfo(SafeHandle h, ref CONSOLE_CURSOR_INFO ci);
Beispiel #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));
 }
Beispiel #4
0
 public static extern bool SetConsoleCursorInfo(SafeHandle h, ref CONSOLE_CURSOR_INFO ci);