ExcelFont

data class ExcelFont(val bold: Boolean? = null, val size: Int? = null, val color: String? = null, val underlined: Boolean? = null)

Represents font formatting properties.

Constructors

Link copied to clipboard
constructor(bold: Boolean? = null, size: Int? = null, color: String? = null, underlined: Boolean? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val size: Int?
Link copied to clipboard

Functions

Link copied to clipboard
fun merge(other: ExcelFont?): ExcelFont