worksheet_write_boolean

@brief Write a formatted boolean worksheet cell.

@param worksheet pointer to a lxw_worksheet instance to be updated. @param row The zero indexed row number. @param col The zero indexed column number. @param value The boolean value to write to the cell. @param format A pointer to a Format instance or NULL.

@return A #lxw_error code.

Write an Excel boolean to the cell specified by row and column:

@code worksheet_write_boolean(worksheet, 2, 2, 0, my_format); @endcode

Meta