Sheet Scope
Scope for creating a sheet.
Supports column configuration, individual rows, and high-performance streaming of row sequences.
Parameters
driver
the underlying ExcelDriver
default Style
the style inherited from workbook or sheet level
Properties
Functions
Link copied to clipboard
Configures widths for specific columns.
Link copied to clipboard
Merges a range of cells within this sheet.
Link copied to clipboard
Provides access to the underlying native sheet object.
Link copied to clipboard
fun <T> rows(data: Iterable<T>, height: Double? = null, style: ExcelStyle? = null, init: RowScope.(T) -> Unit)
Creates rows from an Iterable (e.g., List, Set).
fun <T> rows(data: Sequence<T>, height: Double? = null, style: ExcelStyle? = null, init: RowScope.(T) -> Unit)
Creates rows from a Sequence for high-performance, memory-efficient streaming.