border method

Format border([
  1. CellBorder style = CellBorder.thin
])

Draws a border on all four sides of the cell with style, a thin border by default.

Implementation

Format border([CellBorder style = CellBorder.thin]) {
  _workbook._ensureOpen();
  bindings.xlsxwFormatSetBorder(_handle, style.value);
  return this;
}