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