MoveBufferArea() public static method

public static MoveBufferArea ( int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop ) : void
sourceLeft int
sourceTop int
sourceWidth int
sourceHeight int
targetLeft int
targetTop int
return void
示例#1
0
 public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight,
                                   int targetLeft, int targetTop, Char sourceChar,
                                   ConsoleColor sourceForeColor, ConsoleColor sourceBackColor)
 {
     ConsoleDriver.MoveBufferArea(sourceLeft, sourceTop, sourceWidth, sourceHeight, targetLeft, targetTop,
                                  sourceChar, sourceForeColor, sourceBackColor);
 }
示例#2
0
 public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight,
                                   int targetLeft, int targetTop)
 {
     ConsoleDriver.MoveBufferArea(sourceLeft, sourceTop, sourceWidth, sourceHeight, targetLeft, targetTop);
 }