public ConOut Row(string[] cols, int[] colLengths) { using (new InkScope()) { ClearRow(); Console.Write(ConUtility.Row(cols, colLengths)); return(this); } }
public ConOut Row(string[] cols, int[] colLengths) { var top = Console.CursorTop; ClearRow(); Console.Write(ConUtility.Row(cols, colLengths)); if (Console.CursorTop != top) { Console.CursorTop = top; } return(this); }
public ConOut SeamlessTable(string[] headers, string[][] colLines, int[] lengths) { Console.Write(ConUtility.SeamlessTable(headers, colLines, lengths)); return(this); }
public ConOut SeamlessTable <TModel>(IEnumerable <TModel> models) { Console.Write(ConUtility.SeamlessTable(models)); return(this); }
public ConOut NoBorderTable <TModel>(IEnumerable <TModel> models) { Console.Write(ConUtility.NoBorderTable(models)); return(this); }