(add-merged-region cell-range-address)
(add-merged-region sheet cell-range-address)
(add-merged-region start-row end-row start-column end-column)
(add-merged-region sheet start-row end-row start-column end-column)
Defines merged cells in a sheet.
Defines merged cells in a sheet.
(all-cell-values)
(all-cell-values row)
(all-cell-values row min-cells)
Returns a sequence of the cell values of the row.
Returns a sequence of the cell values of the row.
(all-row-cells)
(all-row-cells sheet)
(all-row-cells sheet min-cells)
Returns a sequence of values of the sheets in the workbook.
Returns a sequence of values of the sheets in the workbook.
(all-row-values)
(all-row-values sheet)
(all-row-values sheet min-cells)
Returns a sequence of values of the sheets in the workbook.
Returns a sequence of values of the sheets in the workbook.
(all-sheet-cells)
(all-sheet-cells workbook)
(all-sheet-cells workbook min-cells)
Returns a sequence of all the cells of the sheets in the workbook. Returns at least 'min-cells' cells per row.
Returns a sequence of all the cells of the sheets in the workbook. Returns at least 'min-cells' cells per row.
(all-sheet-values)
(all-sheet-values workbook)
(all-sheet-values workbook min-cells)
Returns a sequence of all the values of the sheets in the workbook. Returns at least 'min-cells' values per row.
Returns a sequence of all the values of the sheets in the workbook. Returns at least 'min-cells' values per row.
Maps keywords to BorderFormatting values.
Maps keywords to BorderFormatting values.
Maps keywords to PatternFormatting cell style values.
Maps keywords to PatternFormatting cell style values.
(cell-insert-index row)
Returns the index of next 'free' cell in the row.
Returns the index of next 'free' cell in the row.
(cell-result cell)
Returns the result of the formula evaluation if the cell is of type :formula.
Returns the result of the formula evaluation if the cell is of type :formula.
Returns the value of the cell (based on the type of the cell).
Returns the value of the cell (based on the type of the cell).
(cell-values)
(cell-values row)
Returns a sequence of the cell values of the row.
Returns a sequence of the cell values of the row.
(color rgb)
(color wb rgb)
(color r g b)
(color wb r g b)
Creates an 'extended' color.
Creates an 'extended' color.
(color-index color)
Returns the index of the color.
Returns the index of the color.
(create-cell row opts value)
(create-cell row cell-no opts value)
Creates a new cell.
Useful options: :cellStyle (CellStyle) :cellType (CellType)
For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Cell.html
Creates a new cell. Useful options: :cellStyle (CellStyle) :cellType (CellType) For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Cell.html
(create-cell-range-address v)
(create-cell-range-address start-row end-row start-column end-column)
Creates a cell range address.
Useful options: :firstColumn (int) :firstRow (int) :lastColumn (int) :lastRow (int)
For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/util/CellRangeAddress.html
Creates a cell range address. Useful options: :firstColumn (int) :firstRow (int) :lastColumn (int) :lastRow (int) For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/util/CellRangeAddress.html
(create-cell-style wb opts)
Creates a new cell style.
Useful options: :alignment (HorizontalAlignment) :borderBottom (BorderStyle) :borderLeft (BorderStyle) :borderRight (BorderStyle) :borderTop (BorderStyle) :font (Font) :verticalAlignment (VerticalAlignment) :wrapText (boolean)
For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/CellStyle.html
Creates a new cell style. Useful options: :alignment (HorizontalAlignment) :borderBottom (BorderStyle) :borderLeft (BorderStyle) :borderRight (BorderStyle) :borderTop (BorderStyle) :font (Font) :verticalAlignment (VerticalAlignment) :wrapText (boolean) For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/CellStyle.html
(create-data-format wb opts)
Creates a new data format.
Useful options:
For a complete list and description see setters in
Creates a new data format. Useful options: For a complete list and description see setters in
(create-font wb opts)
Creates a new font.
Useful options:
For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Font.html
Creates a new font. Useful options: For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Font.html
(create-hssf-workbook opts)
Creates a new HSSF workbook.
Useful options:
For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Workbook.html
Creates a new HSSF workbook. Useful options: For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Workbook.html
(create-row sheet opts)
(create-row sheet row-no opts)
Creates a new row.
Useful options: :rowStyle (CellStyle)
For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Row.html
Creates a new row. Useful options: :rowStyle (CellStyle) For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Row.html
(create-sheet wb opts)
(create-sheet wb sheet-name opts)
Creates a new sheet.
Useful options: :autoBreaks (boolean) :autoFilter (CellRangeAddress) :defaultColumnWidth (int) :defaultRowHeight (int) :displayFormulas (boolean) :displayGridLines (boolean) :displayRowColHeadings (boolean) :displayZeros (boolean) :fitToPage (boolean) :forceFormulaRecalculation (boolean) :horizontallyCenter (boolean) :printGridLines (boolean) :verticallyCenter (boolean) :zoom (int)
For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Sheet.html
Creates a new sheet. Useful options: :autoBreaks (boolean) :autoFilter (CellRangeAddress) :defaultColumnWidth (int) :defaultRowHeight (int) :displayFormulas (boolean) :displayGridLines (boolean) :displayRowColHeadings (boolean) :displayZeros (boolean) :fitToPage (boolean) :forceFormulaRecalculation (boolean) :horizontallyCenter (boolean) :printGridLines (boolean) :verticallyCenter (boolean) :zoom (int) For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Sheet.html
(create-workbook opts)
(create-workbook file opts)
Creates a new workbook.
Useful options:
For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Workbook.html
Creates a new workbook. Useful options: For a complete list and description see setters in https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/Workbook.html
Maps keywords to FillPatternType cell style values.
Maps keywords to FillPatternType cell style values.
(first-cell-num)
(first-cell-num row)
Returns the index of the first cell in the row.
Returns the index of the first cell in the row.
(first-row-num sheet)
Returns the index of the first row in the sheet.
Returns the index of the first row in the sheet.
(get-all-cells)
(get-all-cells row)
(get-all-cells row min-cells)
(get-all-cells row min-cells missing-cell-policy)
Returns a sequence of all the defined cells in the row.
Returns a sequence of all the defined cells in the row.
(get-all-rows sheet)
Returns a sequence of all the defined rows in the sheet.
Returns a sequence of all the defined rows in the sheet.
(get-cell cell-no)
(get-cell row cell-no)
(get-cell row cell-no missing-cell-policy)
Returns the cell with the index cell-no of the row.
Returns the cell with the index cell-no of the row.
(get-cell-formula)
(get-cell-formula cell)
Returns the formula of the cell if the cell is of type :formula.
Returns the formula of the cell if the cell is of type :formula.
(get-cell-hyperlink)
(get-cell-hyperlink cell)
Returns the hyperlink of the cell (if any).
Returns the hyperlink of the cell (if any).
(get-cell-type)
(get-cell-type cell)
Returns the type of the cell.
Returns the type of the cell.
(get-cells row)
Returns a sequence with the cells of the row.
Returns a sequence with the cells of the row.
(get-column-index)
(get-column-index cell)
Returns the column index of the cell.
Returns the column index of the cell.
(get-indexed-color-map wb)
Returns the indexed color map of the workbooks styles source.
Returns the indexed color map of the workbooks styles source.
(get-row cell)
(get-row sheet row-no)
Returns the row of a cell or by sheet and row index.
Returns the row of a cell or by sheet and row index.
(get-row-index)
(get-row-index cell)
Returns the row index of the cell.
Returns the row index of the cell.
(get-rows sheet)
Returns a sequence of the physically defined rows of the sheet.
Returns a sequence of the physically defined rows of the sheet.
(get-sheet o)
(get-sheet wb sheet-no)
Returns the sheet of a row or cell or at the given sheet index of the workbook. When given a sheet, the sheet is returned.
Returns the sheet of a row or cell or at the given sheet index of the workbook. When given a sheet, the sheet is returned.
(get-sheets wb)
Returns a sequence of the sheets in the workbook.
Returns a sequence of the sheets in the workbook.
Maps keywords to HorizontalAlignment values.
Maps keywords to HorizontalAlignment values.
(last-cell-num)
(last-cell-num row)
Returns the index of the last cell in the row.
Returns the index of the last cell in the row.
(last-row-num sheet)
Returns the index of the last row in the sheet.
Returns the index of the last row in the sheet.
(max-cell-num o)
Returns the maximum of the last cell index of all the rows in the sheet. The argument can be a sheet or a row.
Returns the maximum of the last cell index of all the rows in the sheet. The argument can be a sheet or a row.
Maps keywords to Row$MissingCellPolicy values.
Maps keywords to Row$MissingCellPolicy values.
(new-cell opts value & body)
Creates a new cell in the current row.
Creates a new cell in the current row.
(new-cell-style opts)
Creates a new cell style in the current workbook.
Creates a new cell style in the current workbook.
(new-data-format opts)
Creates a new data format in the current workbook.
Creates a new data format in the current workbook.
(new-font opts)
Creates a new font in the current workbook.
Creates a new font in the current workbook.
(new-row opts & body)
Creates a new row in the current sheet.
Creates a new row in the current sheet.
(new-sheet opts & body)
Creates a new sheet in the current workbook.
Creates a new sheet in the current workbook.
(new-workbook opts & body)
Creates a new workbook.
Creates a new workbook.
(physical-number-of-cells)
(physical-number-of-cells row)
Returns the physical number of cells in the row.
Returns the physical number of cells in the row.
(physical-number-of-rows sheet)
Returns the physical number of rows in the sheet.
Returns the physical number of rows in the sheet.
Maps keywords to Workbook picture type values.
Maps keywords to Workbook picture type values.
(read-workbook file)
(read-workbook wb file)
Reads a workbook from file.
Reads a workbook from file.
(row-insert-index sheet)
Returns the index of next 'free' row in the sheet.
Returns the index of next 'free' row in the sheet.
(row-values sheet)
Returns a sequence of values of the sheets in the workbook.
Returns a sequence of values of the sheets in the workbook.
(select-cell cell-no & body)
Updates the cell in the current row.
Updates the cell in the current row.
(select-row row-no & body)
Updates the row in the current sheet.
Updates the row in the current sheet.
(select-sheet sheet-no & body)
Updates the sheet in the current workbook.
Updates the sheet in the current workbook.
(set-cell-type type)
(set-cell-type cell type)
Sets the type of the cell to type.
Sets the type of the cell to type.
(set-cell-value cell value)
Sets the value of the cell.
Sets the value of the cell.
Maps keywords to SheetVisibility values.
Maps keywords to SheetVisibility values.
(sheet-values)
(sheet-values workbook)
Returns a sequence of phyically defined values of the sheets in the workbook.
Returns a sequence of phyically defined values of the sheets in the workbook.
(to-int value)
Coerces a (numeric) value to an integer.
Coerces a (numeric) value to an integer.
Maps keywords to VerticalAlignment values.
Maps keywords to VerticalAlignment values.
(with-workbook file & body)
Reads the workbook from file, executes the body with the workbook and writes the workbook back to file.
Reads the workbook from file, executes the body with the workbook and writes the workbook back to file.
(write-workbook file)
(write-workbook file wb)
Writes a workbook to file.
Writes a workbook to file.
(xssf-workbook? wb)
Checks if the given workbook is a xssf workbook (a.k.a. an '.xlsx' file).
Checks if the given workbook is a xssf workbook (a.k.a. an '.xlsx' file).
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close