Пример #1
0
 public static void Outline(Rectangle area, char character, AdvConsoleColor foreColor, AdvConsoleColor backColor = AdvConsoleColor.None)
 {
     Outline(area.X, area.Y, area.Width, area.Height, character, foreColor, backColor);
 }
Пример #2
0
 public static void Outline(Rectangle area, char topCharacter, char sideCharacter, char topLeftCharacter, char topRightCharacter, char bottomLeftCharacter, char bottomRightCharacter, AdvConsoleColor foreColor, AdvConsoleColor backColor = AdvConsoleColor.None)
 {
     Outline(area.X, area.Y, area.Width, area.Height, topCharacter, sideCharacter, topLeftCharacter, topRightCharacter, bottomLeftCharacter, bottomRightCharacter, foreColor, backColor);
 }
Пример #3
0
 public static void Fill(Rectangle area, char character, AdvConsoleColor foreColor, AdvConsoleColor backColor)
 {
     Fill(area.X, area.Y, area.Width, area.Height, character, foreColor, backColor);
 }