Fixed missing xmldoc

This commit is contained in:
tznind
2020-12-14 15:49:29 +00:00
parent 30251c8baf
commit 7cf34777d3

View File

@@ -6,6 +6,9 @@ using System.Linq;
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 {
/// <summary>
@@ -448,7 +451,7 @@ namespace Terminal.Gui.Views {
}
/// <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>
/// <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>