AddColumn(Table, string, Action<TableColumn>) Method

Adds a column to the table.
public static Table AddColumn(this Table table, string column, Action<TableColumn> configure = null)
Namespace
Spectre.Console
Containing Type
TableExtensions

Parameters

Table table
The table to add the column to.
string column
The column to add.
Action<TableColumn> configure
Delegate that can be used to configure the added column.

Returns