System.ConsoleDriver.MoveBufferArea C# (CSharp) Метод

MoveBufferArea() публичный статический Метод

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
Результат void
		public static void MoveBufferArea (int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight,
					int targetLeft, int targetTop)
		{
			MoveBufferArea (sourceLeft, sourceTop, sourceWidth, sourceHeight,
					targetLeft, targetTop, ' ', 0, 0);
		}

Same methods

ConsoleDriver::MoveBufferArea ( int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop, char sourceChar, ConsoleColor sourceForeColor, ConsoleColor sourceBackColor ) : void

Usage Example

Пример #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);
 }
All Usage Examples Of System.ConsoleDriver::MoveBufferArea