Class: OoxmlParser::SlideSize
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::SlideSize
- Defined in:
- lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide_size.rb
Overview
Class for parsing sldSz tag
Instance Attribute Summary collapse
-
#height ⇒ Object
Returns the value of attribute height.
-
#type ⇒ Object
Returns the value of attribute type.
-
#width ⇒ Object
Returns the value of attribute width.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ Bookmark
Parse SlideSize object.
Methods inherited from OOXMLDocumentObject
#==, add_to_xmls_stack, copy_file_and_rename_to_zip, current_xml, dir, encrypted_file?, get_link_from_rels, #initialize, unzip_file, #with_data?
Methods included from OoxmlDocumentObjectHelper
Constructor Details
This class inherits a constructor from OoxmlParser::OOXMLDocumentObject
Instance Attribute Details
#height ⇒ Object
Returns the value of attribute height.
4 5 6 |
# File 'lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide_size.rb', line 4 def height @height end |
#type ⇒ Object
Returns the value of attribute type.
4 5 6 |
# File 'lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide_size.rb', line 4 def type @type end |
#width ⇒ Object
Returns the value of attribute width.
4 5 6 |
# File 'lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide_size.rb', line 4 def width @width end |
Instance Method Details
#parse(node) ⇒ Bookmark
Parse SlideSize object
9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide_size.rb', line 9 def parse(node) node.attributes.each do |key, value| case key when 'cx' @width = OoxmlSize.new(value.value.to_f, :emu) when 'cy' @height = OoxmlSize.new(value.value.to_f, :emu) when 'type' @type = value.value.to_sym end end self end |