System.Console.SetWindowPosition C# (CSharp) Méthode

SetWindowPosition() public static méthode

public static SetWindowPosition ( int left, int top ) : void
left int
top int
Résultat void
        public static void SetWindowPosition(int left, int top) { }
        public static void SetWindowSize(int width, int height) { }

Usage Example

Exemple #1
0
 public static void SetWindowPosition(int left, int top)
 {
     Console.SetWindowPosition(left, top);
 }