RowScope

class RowScope(driver: ExcelDriver) : BaseScope

Scope for creating a row.

Provides DSL methods for defining cells and applying inherited styles.

Parameters

driver

the underlying ExcelDriver

Constructors

Link copied to clipboard
constructor(driver: ExcelDriver)

Properties

Link copied to clipboard

The zero-based index of the next column to be processed in the current row.

Functions

Link copied to clipboard
fun cell(col: Int? = null, value: Any? = null, formula: String? = null, style: ExcelStyle? = null, link: String? = null)

Defines a cell in the current row.

Link copied to clipboard
fun skip(count: Int = 1)

Skips the specified number of columns in the current row.