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); }
public static void PutExt(IPoint location, IPoint offset, char code) { BearLibTerminalIntegration.PutExt(location.X, location.Y, offset.X, offset.Y, code, null); }
public static void PutExt(int x, int y, int dx, int dy, char code) { BearLibTerminalIntegration.PutExt(x, y, dx, dy, code, null); }