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
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 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.