class OoxmlParser::PictureDimension

Class for parsing `wp14:pctWidth`, `wp14:pctHeight` object

Attributes

value[RW]

@return [Float] value of picture width or height

Public Instance Methods

parse(node) click to toggle source

Parse PictureWidth @param [Nokogiri::XML:Node] node with PictureWidth @return [PictureWidth] result of parsing

# File lib/ooxml_parser/common_parser/common_data/alternate_content/drawing/drawing_properties/size_relative/picture_dimension.rb, line 12
def parse(node)
  # value should be in percent as said in
  # https://msdn.microsoft.com/en-us/library/documentformat.openxml.office2010.word.drawing.relativewidth%28v=office.14%29.aspx?f=255&MSPPError=-2147217396
  @value = OoxmlSize.new(node.child.text.to_f, :one_1000th_percent)
  self
end