Пример #1
0
 public static IConsole SplitLeft(this Window c, string title, LineThickNess thickness)
 {
     return(LayoutExtensions._LeftRight(c, title, false, true, thickness, c.ForegroundColor));
 }
Пример #2
0
 public static IConsole SplitLeft(this Window c, ConsoleColor foreground)
 {
     return(LayoutExtensions._LeftRight(c, null, false, false, null, foreground));
 }
Пример #3
0
 public static IConsole SplitLeft(this Window c, string title, ConsoleColor foreground)
 {
     return(LayoutExtensions._LeftRight(c, title, false, true, LineThickNess.Single, foreground));
 }
Пример #4
0
 public static IConsole SplitRight(this Window c)
 {
     return(LayoutExtensions._LeftRight(c, null, true, false, null, c.ForegroundColor));
 }