OfficeIMO

API Reference

Class

RowBuilder

Namespace OfficeIMO.Excel.Fluent
Assembly OfficeIMO.Excel

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: RowBuilder

Writes a cell in this row by 1‑based column index.

Parameters

column System.Int32 requiredposition: 0
value System.Object = null optionalposition: 1
formula System.String = null optionalposition: 2
numberFormat System.String = null optionalposition: 3
public RowBuilder Cell(String columnReference, Object value = null, String formula = null, String numberFormat = null) #
Returns: RowBuilder

Writes a cell in this row using a column letter reference (e.g., "A", "BC").

Parameters

columnReference System.String requiredposition: 0
value System.Object = null optionalposition: 1
formula System.String = null optionalposition: 2
numberFormat System.String = null optionalposition: 3
public RowBuilder Values(params Object[] values) #
Returns: RowBuilder

Writes a full set of values across the row starting at column 1.

Parameters

values System.Object[] requiredposition: 0