Table of Contents

Class ActivityRowBuilder

Namespace
ItTiger.TigerCli.Tui.Activity
Assembly
ItTiger.TigerCli.dll
Fluent builder for a single ActivityRowSpec. Add cells with Cell(int, int) and, for a dynamic (named) row, declare the fixed value array with Values(params object?[]).
public sealed class ActivityRowBuilder
Inheritance
ActivityRowBuilder
Inherited Members

Methods

Cell(int, int)

Begins a cell at column spanning span columns. Terminate the returned cell builder with .Text(...) or .ProgressBar(...), which returns this row builder for further chaining.
public ActivityCellBuilder Cell(int column, int span = 1)

Parameters

column int
span int

Returns

ActivityCellBuilder

Values(params object?[])

Declares the fixed-length value array for a dynamic row and seeds the initial values. May be called once. Only valid on a named row.
public ActivityRowBuilder Values(params object?[] values)

Parameters

values object[]

Returns

ActivityRowBuilder