Class: OoxmlParser::AlphaModFix
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::AlphaModFix
- Defined in:
- lib/ooxml_parser/common_parser/common_data/alternate_content/drawing/graphic/shape/shape_properties/docx_shape_properties/blip_fill/blip/alpha_mod_fix.rb
Overview
Class for parsing ‘a:alphaModFix` tag
Instance Attribute Summary collapse
-
#amount ⇒ Object
Returns the value of attribute amount.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ AlphaModFix
Parse AlphaModFix object.
Methods inherited from OOXMLDocumentObject
#==, #boolean_attribute_value, #initialize, #parse_xml, #with_data?
Methods included from OoxmlObjectAttributeHelper
#attribute_enabled?, #option_enabled?
Methods included from OoxmlDocumentObjectHelper
Constructor Details
This class inherits a constructor from OoxmlParser::OOXMLDocumentObject
Instance Attribute Details
#amount ⇒ Object
Returns the value of attribute amount.
6 7 8 |
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/drawing/graphic/shape/shape_properties/docx_shape_properties/blip_fill/blip/alpha_mod_fix.rb', line 6 def amount @amount end |
Instance Method Details
#parse(node) ⇒ AlphaModFix
Parse AlphaModFix object
11 12 13 14 15 16 17 18 19 |
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/drawing/graphic/shape/shape_properties/docx_shape_properties/blip_fill/blip/alpha_mod_fix.rb', line 11 def parse(node) node.attributes.each do |key, value| case key when 'amt' @amount = OoxmlSize.new(value.value.to_f, :one_1000th_percent) end end self end |