Ejemplo n.º 1
0
 public static IConsole SplitLeft(this Window c, string title, LineThickNess thickness)
 {
     return(LayoutExtensions._LeftRight(c, title, false, true, thickness, c.ForegroundColor));
 }
Ejemplo n.º 2
0
 public static IConsole SplitLeft(this Window c, ConsoleColor foreground)
 {
     return(LayoutExtensions._LeftRight(c, null, false, false, null, foreground));
 }
Ejemplo n.º 3
0
 public static IConsole SplitLeft(this Window c, string title, ConsoleColor foreground)
 {
     return(LayoutExtensions._LeftRight(c, title, false, true, LineThickNess.Single, foreground));
 }
Ejemplo n.º 4
0
 public static IConsole SplitBottom(this Window c, string title, LineThickNess thickness, ConsoleColor foreground)
 {
     return(LayoutExtensions._TopBot(c, title, true, true, thickness, foreground));
 }
Ejemplo n.º 5
0
 public static IConsole SplitBottom(this Window c, string title)
 {
     return(LayoutExtensions._TopBot(c, title, true, true, LineThickNess.Single, c.ForegroundColor));
 }
Ejemplo n.º 6
0
 public static IConsole SplitBottom(this Window c, ConsoleColor foreground)
 {
     return(LayoutExtensions._TopBot(c, null, true, false, null, foreground));
 }
Ejemplo n.º 7
0
 // TOPS
 public static IConsole SplitTop(this Window c)
 {
     return(LayoutExtensions._TopBot(c, null, false, false, null, c.ForegroundColor));
 }
Ejemplo n.º 8
0
 public static IConsole SplitRight(this Window c)
 {
     return(LayoutExtensions._LeftRight(c, null, true, false, null, c.ForegroundColor));
 }