TableRow Class

Represents a table row.
public sealed class TableRow : IEnumerable<IRenderable>, IEnumerable
Namespace
Spectre.Console
Interfaces

Constructors

TableRow(IEnumerable<IRenderable>)
Initializes a new instance of the TableRow class.

Properties

int Count
Gets the number of columns in the row.
IRenderable this[int]
Gets a row item at the specified table column index.

Methods

IEnumerator<IRenderable> GetEnumerator()

Extension Methods

T And<TableRow>(Action<TableRow>)
Performs the specified action on the given object and then returns the object. Useful for fluent testing patterns where additional assertions or operations are chained together in a readable manner.