Function: org-odt--textbox
org-odt--textbox is a byte-compiled function defined in ox-odt.el.gz.
Signature
(org-odt--textbox TEXT WIDTH HEIGHT STYLE &optional EXTRA ANCHOR-TYPE)
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Textbox
(defun org-odt--textbox (text width height style &optional
extra anchor-type)
(org-odt--frame
(format "\n<draw:text-box %s>%s\n</draw:text-box>"
(concat (format " fo:min-height=\"%0.2fcm\"" (or height .2))
(and (not width)
(format " fo:min-width=\"%0.2fcm\"" (or width .2))))
text)
width nil style extra anchor-type))