Console.SetWindowSize(Int32,Int32)方法用於將控製台窗口的高度和寬度更改為指定的值。
用法: public static void SetWindowSize (int width, int height);
參數:
width:控製台窗口的寬度,以列為單位。
height:控製台窗口的高度,以行為單位。
異常:
- ArgumentOutOfRangeException:
- 如果寬度或高度小於或等於零
- 寬度加WindowLeft或高度加WindowTop大於或等於MaxValue
- width或height大於當前屏幕分辨率和控製台字體的最大可能窗口寬度或高度。
- IOException:如果發生I /O錯誤。
示例1:獲取窗口的當前尺寸。
// C# program to get the current
// window width and Height
using System;
namespace GFG {
class Program {
static void Main(string[] args)
{
Console.WriteLine(Console.WindowWidth);
Console.WriteLine(Console.WindowHeight);
}
}
}
輸出:
示例2:設置SetWindowSize的值
// C# program to illustrate the
// Console.SetWindowSize Property
using System;
namespace GFG {
class Program {
static void Main(string[] args)
{
// Passed 40, 40 to SetWindowSize to
// change window size to 40 by 40
Console.SetWindowSize(40, 40);.
// Printing the current dimensions
Console.WriteLine(Console.WindowWidth);
Console.WriteLine(Console.WindowHeight);
}
}
}
輸出:
注意:在兩個圖像中,請參見窗口底部的水平滾動條。
參考:
相關用法
- C# Uri.IsBaseOf(Uri)用法及代碼示例
- C# Random.Next()用法及代碼示例
- C# Uri.ToString()用法及代碼示例
- C# Uri.IsWellFormedOriginalString()用法及代碼示例
- C# Uri.GetHashCode()用法及代碼示例
- C# Math.Log()用法及代碼示例
- C# Uri.FromHex()用法及代碼示例
- C# Uri.IsHexDigit()用法及代碼示例
- C# Queue.Contains()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamChauhan5大神的英文原創作品 Console.SetWindowSize() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。