klyn.io.xlsx.Worksheet.write
method
public write(reference as String, value as Object, format as Format = null) as Void:
Description

Writes one cell value.

Strings, integers, floating-point numbers and booleans are serialized with their native XLSX cell types. Other values are written as strings.

Parameters
  • reference A1 cell reference.
  • value Value to write.
  • format Optional cell format.
Throws
  • XlsxException if the reference is invalid.
Example
sheet = Worksheet("Data")
sheet.write("A1", "Prénom")