InsertRow(Table, int, IEnumerable<IRenderable>) Method

Inserts a row in the table at the specified index.
public static Table InsertRow(this Table table, int index, IEnumerable<IRenderable> columns)
Namespace
Spectre.Console
Containing Type
TableExtensions

Parameters

Table table
The table to add the row to.
int index
The index to insert the row at.
IEnumerable<IRenderable> columns
The row columns to add.

Returns