API Reference
Class
RowBuilder
Fluent helper for writing a single row.
Inheritance
- Object
- RowBuilder
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Method RowBuilder.Cell
- Method RowBuilder.Cell
- Method RowBuilder.Values
Accepted by parameters
- Method SheetBuilder.Row
Methods
Cell 2 overloads
public RowBuilder Cell(Int32 column, Object value = null, String formula = null, String numberFormat = null) #Returns:
RowBuilderWrites a cell in this row by 1‑based column index.
Parameters
- column System.Int32
- value System.Object = null
- formula System.String = null
- numberFormat System.String = null
public RowBuilder Cell(String columnReference, Object value = null, String formula = null, String numberFormat = null) #Returns:
RowBuilderWrites a cell in this row using a column letter reference (e.g., "A", "BC").
Parameters
- columnReference System.String
- value System.Object = null
- formula System.String = null
- numberFormat System.String = null
public RowBuilder Values(params Object[] values) #Returns:
RowBuilderWrites a full set of values across the row starting at column 1.
Parameters
- values System.Object[]