Method: Wee::HtmlCanvas#text
- Defined in:
- lib/wee/html_canvas.rb
#text(str) ⇒ Object Also known as: <<
98 99 100 101 102 103 |
# File 'lib/wee/html_canvas.rb', line 98 def text(str) @current_brush.close if @current_brush @current_brush = nil @document.text(str) nil end |