コード例 #1
0
ファイル: Kernel.cs プロジェクト: usbhell/flurrysharp
 public static extern int SetConsoleCursorInfo(HANDLE hConsoleOutput, ref CONSOLE_CURSOR_INFO lpConsoleCursorInfo);
コード例 #2
0
 public static extern bool SetConsoleCursorInfo(SafeHandle h, ref CONSOLE_CURSOR_INFO ci);
コード例 #3
0
ファイル: console.cs プロジェクト: sirmax1/coin
 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));
 }
コード例 #4
0
ファイル: wincon.cs プロジェクト: ufasoft/coin
 public static extern bool SetConsoleCursorInfo(SafeHandle h, ref CONSOLE_CURSOR_INFO ci);