Function: orgtbl-uc-draw-cont

orgtbl-uc-draw-cont is a byte-compiled function defined in org-table.el.gz.

Signature

(orgtbl-uc-draw-cont VALUE MIN MAX &optional WIDTH)

Documentation

Draw a bar in a table using block unicode characters.

It is a variant of orgtbl-ascii-draw with Unicode block characters, for a smooth display. Bars are solid (to the extent the font allows).

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun orgtbl-uc-draw-cont (value min max &optional width)
  "Draw a bar in a table using block unicode characters.
It is a variant of `orgtbl-ascii-draw' with Unicode block
characters, for a smooth display.  Bars are solid (to the extent
the font allows)."
  (orgtbl-ascii-draw value min max width
		     " \u258F\u258E\u258D\u258C\u258B\u258A\u2589\u2588"))