Method: Autocad::MText#write_ole
- Defined in:
- lib/autocad/mtext.rb
#write_ole(text) ⇒ void
This method returns an undefined value.
Update text content with cell awareness
71 72 73 74 75 76 77 |
# File 'lib/autocad/mtext.rb', line 71 def write_ole(text) if in_cell? write_ole_in_cell(text) else write_ole_regular(text) end end |