C#中的Console.MoveBufferArea()方法用于将屏幕缓冲区的指定源区域复制到指定的目标区域。
用法
语法如下 -
public static void MoveBufferArea (int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop);
这里,
- sourceLeft
源区最左边的一列。
- sourceTop
源区域的最上面一行。
- sourceWidth
源区域中的列数。
- sourceHeight
源区域中的行数。
- targetLeft
目标区域最左边的一列。
- targetTop
目标区域的最上面一行。
示例
现在让我们看一个在 C# 中实现 Console.MoveBufferArea() 方法的例子 -
using System;
class Demo {
public static void Main (string[] args) {
Console.WriteLine("Demo text!");
Console.MoveBufferArea(0, 0, Console.BufferWidth, Console.BufferHeight, 20, 20);
}
}
输出
这将产生以下输出 -
相关用法
- C# Console.MoveBufferArea用法及代码示例
- C# Console.Clear用法及代码示例
- C# Console.SetOut()用法及代码示例
- C# Console.SetIn()用法及代码示例
- C# Console.SetWindowPosition()用法及代码示例
- C# Console.SetBufferSize()用法及代码示例
- C# Console.TreatControlCAsInput用法及代码示例
- C# Console.SetWindowSize()用法及代码示例
- C# Console.ReadKey()用法及代码示例
- C# Console.SetCursorPosition()用法及代码示例
- C# Console.ReadLine()用法及代码示例
- C# Console.OpenStandardInput用法及代码示例
- C# Console.OpenStandardError用法及代码示例
- C# Console.Read()用法及代码示例
- C# Console.SetError()用法及代码示例
- C# Console.ResetColor()用法及代码示例
- C# Console.OpenStandardOutput()用法及代码示例
- C# Convert.ToInt16(String, IFormatProvider)用法及代码示例
- C# Convert.ToChar(String, IFormatProvider)用法及代码示例
- C# Convert.ToUInt64(String, IFormatProvider)用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 Console.MoveBufferArea() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。