Class ActivityRowBuilder
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
Returns
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
valuesobject[]