System.ConsoleDriver.SetWindowSize C# (CSharp) Method

SetWindowSize() public static method

public static SetWindowSize ( int width, int height ) : void
width int
height int
return void
		public static void SetWindowSize (int width, int height)
		{
			driver.SetWindowSize (width, height);
		}

Usage Example

Esempio n. 1
0
 public static void SetWindowSize(int width, int height)
 {
     ConsoleDriver.SetWindowSize(width, height);
 }