Пример #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 SplitBottom(this Window c, string title, LineThickNess thickness, ConsoleColor foreground)
 {
     return(LayoutExtensions._TopBot(c, title, true, true, thickness, foreground));
 }
Пример #5
0
 public static IConsole SplitBottom(this Window c, string title)
 {
     return(LayoutExtensions._TopBot(c, title, true, true, LineThickNess.Single, c.ForegroundColor));
 }
Пример #6
0
 public static IConsole SplitBottom(this Window c, ConsoleColor foreground)
 {
     return(LayoutExtensions._TopBot(c, null, true, false, null, foreground));
 }
Пример #7
0
 // TOPS
 public static IConsole SplitTop(this Window c)
 {
     return(LayoutExtensions._TopBot(c, null, false, false, null, c.ForegroundColor));
 }
Пример #8
0
 public static IConsole SplitRight(this Window c)
 {
     return(LayoutExtensions._LeftRight(c, null, true, false, null, c.ForegroundColor));
 }