Browse Source

Fixed missing xmldoc

tznind 4 years ago
parent
commit
7cf34777d3
1 changed files with 4 additions and 1 deletions
  1. 4 1
      Terminal.Gui/Views/TableView.cs

+ 4 - 1
Terminal.Gui/Views/TableView.cs

@@ -6,6 +6,9 @@ using System.Linq;
 
 
 namespace Terminal.Gui.Views {
 namespace Terminal.Gui.Views {
 
 
+	/// <summary>
+	/// Describes how to render a given column in  a <see cref="TableView"/> including <see cref="Alignment"/> and textual representation of cells (e.g. date formats)
+	/// </summary>
 	public class ColumnStyle {
 	public class ColumnStyle {
 		
 		
 		/// <summary>
 		/// <summary>
@@ -448,7 +451,7 @@ namespace Terminal.Gui.Views {
 		}
 		}
 
 
 		/// <summary>
 		/// <summary>
-		/// Truncates or pads <paramref name="representation"/> so that it occupies a exactly <paramref name="availableHorizontalSpace"/> using the alignment specified in <paramref name="style"/> (or left if no style is defined)
+		/// Truncates or pads <paramref name="representation"/> so that it occupies a exactly <paramref name="availableHorizontalSpace"/> using the alignment specified in <paramref name="colStyle"/> (or left if no style is defined)
 		/// </summary>
 		/// </summary>
 		/// <param name="originalCellValue">The object in this cell of the <see cref="Table"/></param>
 		/// <param name="originalCellValue">The object in this cell of the <see cref="Table"/></param>
 		/// <param name="representation">The string representation of <paramref name="originalCellValue"/></param>
 		/// <param name="representation">The string representation of <paramref name="originalCellValue"/></param>