Method: Microstation::TextNode#write_ole_regular

Defined in:
lib/microstation/text_node.rb

#write_ole_regular(text) ⇒ Object



44
45
46
47
48
49
# File 'lib/microstation/text_node.rb', line 44

def write_ole_regular(text)
  ole_obj.DeleteAllTextLines
  text.each_line do |line|
    ole_obj.AddTextLine(line)
  end
end