klyn.io.xlsx.Worksheet.writeColumn
method
public writeColumn(reference as String, values as IList<Int>, format as Format = null) as Void:
Description

Writes values vertically from a starting cell.

Parameters
  • reference Starting A1 cell reference.
  • values Values to write downward.
  • format Optional cell format.
Throws
  • XlsxException if the reference is invalid.
Example
sheet = Worksheet("Data")
sheet.writeColumn("A1", [10, 20, 30])