openxml/openxml-drawingml

View on GitHub
lib/openxml/drawingml/elements/srgb_color.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module DrawingML
    module Elements
      class SRGBColor < OpenXml::Element
        namespace :a
        tag :srgbClr
        name "srgb_color"

        attribute :value, expects: :hex_color, displays_as: :val

      end
    end
  end
end