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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。