Package-level declarations

Types

Link copied to clipboard

Enumeration for border thickness/style.

Link copied to clipboard
data class ExcelAlignment(val horizontal: HorizontalAlign? = null, val vertical: VerticalAlign? = null)

Represents text alignment properties.

Link copied to clipboard
data class ExcelBackground(val color: String? = null)

Represents background filling properties.

Link copied to clipboard
data class ExcelBorder(val all: BorderStyle? = null, val top: BorderStyle? = null, val bottom: BorderStyle? = null, val left: BorderStyle? = null, val right: BorderStyle? = null)

Represents cell border properties.

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

Represents font formatting properties.

Link copied to clipboard
data class ExcelStyle(val font: ExcelFont? = null, val background: ExcelBackground? = null, val alignment: ExcelAlignment? = null, val border: ExcelBorder? = null, val wrapText: Boolean? = null, val dataFormat: String? = null)

Domain-independent style model representing Excel cell formatting.

Link copied to clipboard

Enumeration for horizontal alignment in a cell.

Link copied to clipboard

Enumeration for vertical alignment in a cell.