WindowsLeft 属性获取或设置控制台窗口区域相对于屏幕缓冲区的最左侧位置。
声明一个整数变量以获得最左边的位置。
int left;
现在,使用 Console.WindowLeft 属性。
left = Console.WindowLeft
让我们看看完整的例子。
示例
using System;
class Demo {
static void Main() {
int left;
left = Console.WindowLeft;
Console.WriteLine("Left position of the Console window = "+left);
}
}
输出
注意:输出可能会根据控制台窗口的位置而有所不同
Left position of the Console window = 0
相关用法
- C# Console.WindowWidth用法及代码示例
- 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.MoveBufferArea()用法及代码示例
- C# Console.MoveBufferArea用法及代码示例
- C# Console.SetCursorPosition()用法及代码示例
- C# Console.ReadLine()用法及代码示例
- C# Console.OpenStandardInput用法及代码示例
- C# Console.OpenStandardError用法及代码示例
- C# Console.Read()用法及代码示例
- C# Console.SetError()用法及代码示例
- C# Console.ResetColor()用法及代码示例
注:本文由纯净天空筛选整理自Ankith Reddy大神的英文原创作品 C# Console.WindowLeft Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。