コード例 #1
0
 public static extern bool SetConsoleScreenBufferSize(
     IntPtr hConsoleOutput,
     COORD dwSize
     );
コード例 #2
0
 public static extern bool SetConsoleCursorPosition(
     IntPtr hConsoleOutput,
     COORD dwCursorPosition
     );
コード例 #3
0
 public static extern bool SetConsoleDisplayMode(
     IntPtr ConsoleOutput,
     uint Flags,
     out COORD NewScreenBufferDimensions
     );
コード例 #4
0
 public WINDOW_BUFFER_SIZE_RECORD(short x, short y)
 {
     dwSize   = new COORD();
     dwSize.X = x;
     dwSize.Y = y;
 }