コード例 #1
0
 public static unsafe extern bool WriteConsoleOutput(
     IntPtr hConsoleOutput,
     CHAR_INFO *lpBuffer,   //CHAR_INFO
     SMALL_COORD dwBufferSize,
     SMALL_COORD dwBufferCoord,
     SMALL_RECT *lpWriteRegion
     );
コード例 #2
0
 public SMALL_RECT(SMALL_COORD LeftTop, SMALL_COORD RightBottom)
 {
     Left = LeftTop.x; Top = LeftTop.y; Right = RightBottom.x; Bottom = RightBottom.y;
 }
コード例 #3
0
 public static unsafe extern bool SetConsoleCursorPosition(
     IntPtr hConsoleOutput,
     SMALL_COORD dwPosition
     );