Ejemplo n.º 1
0
 public static void PutExt(int x, int y, int dx, int dy, int code, IColor[] corners)
 {
     int[] values = new int[4];
     for (int i = 0; i < 4; i++)
     {
         values[i] = corners[i].ToArgb();
     }
     BearLibTerminalIntegration.PutExt(x, y, dx, dy, code, values);
 }
Ejemplo n.º 2
0
 public static void PutExt(IPoint location, IPoint offset, char code)
 {
     BearLibTerminalIntegration.PutExt(location.X, location.Y, offset.X, offset.Y, code, null);
 }
Ejemplo n.º 3
0
 public static void PutExt(int x, int y, int dx, int dy, char code)
 {
     BearLibTerminalIntegration.PutExt(x, y, dx, dy, code, null);
 }