Contains extension methods for TableColumn.
Methods
public static TableColumn Footer(TableColumn column, string footer)
Sets the table column footer.
Parameters:
column (TableColumn)The table column.
footer (string)The table column footer markup text.
Returns:
The same instance so that multiple calls can be chained.
public static TableColumn Footer(TableColumn column, IRenderable footer)
Sets the table column footer.
Parameters:
column (TableColumn)The table column.
footer (IRenderable)The table column footer.
Returns:
The same instance so that multiple calls can be chained.
public static TableColumn Header(TableColumn column, string header)
Sets the table column header.
Parameters:
column (TableColumn)The table column.
header (string)The table column header markup text.
Returns:
The same instance so that multiple calls can be chained.
public static TableColumn Header(TableColumn column, IRenderable header)
Sets the table column header.
Parameters:
column (TableColumn)The table column.
header (IRenderable)The table column header.
Returns:
The same instance so that multiple calls can be chained.