Class: OpenXml::DrawingML::Properties::ColorSystemColor

Inherits:
ColorProperty
  • Object
show all
Defined in:
lib/openxml/drawingml/properties/color_system_color.rb

Constant Summary collapse

SYSTEM_COLORS =
%i{
  3dDkShadow 3dLight activeBorder activeCaption appWorkspace
  background btnFace btnHighlight btnShadow btnText captionText
  gradientActiveCaption gradientInactiveCaption grayText highlight
  highlightText hotLight inactiveBorder inactiveCaption
  inactiveCaptionText infoBk infoText menu menuBar menuHighlight
  menuText scrollBar window windowFrame windowText
}.freeze

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ ColorSystemColor

Returns a new instance of ColorSystemColor.



22
23
24
25
# File 'lib/openxml/drawingml/properties/color_system_color.rb', line 22

def initialize(value)
  super()
  self.value = value
end