API Reference
Class
RowBuilder
Fluent helper for writing a single row.
Inheritance
- Object
- RowBuilder
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[]
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object