class Odf::Element::DrawFrame
Constants
- VALID_OPTIONS
- XML_TAG
Public Class Methods
build(parent, options = {})
click to toggle source
# File lib/odf/element/draw_frame.rb, line 37 def self.build(parent, options = {}) new(parent, options) end
Public Instance Methods
add_image(options = {})
click to toggle source
# File lib/odf/element/draw_frame.rb, line 45 def add_image(options = {}) Odf::Element::Image.build(self, options) end
add_text_box(options = {})
click to toggle source
# File lib/odf/element/draw_frame.rb, line 41 def add_text_box(options = {}) Odf::Element::DrawTextBox.build(self, options) end