Class: OpenXml::DrawingML::Properties::Path

Inherits:
Properties::ContainerProperty
  • Object
show all
Includes:
HasAttributes
Defined in:
lib/openxml/drawingml/properties/path.rb

Constant Summary collapse

FILL_MODES =

TODO: Implement child classes child_classes :path_close, :path_move_to, :path_line_to, :path_arc_to,

:path_quadradic_bezier_to, :cubic_bezier_to
i{ none norm lighten lightenLess darken darkenLess }.freeze

Instance Method Summary collapse

Instance Method Details

#render?Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/openxml/drawingml/properties/path.rb', line 27

def render?
  attributes.keys.map(&method(:send)).any? { |value| !value.nil? } || super
end