System.ConsoleDriver.SetWindowSize C# (CSharp) Méthode

SetWindowSize() public static méthode

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

Usage Example

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