Class: OpenXml::Docx::Properties::Columns

Inherits:
ContainerProperty show all
Defined in:
lib/openxml/docx/properties/columns.rb

Instance Attribute Summary

Attributes inherited from BaseProperty

#value

Instance Method Summary collapse

Methods inherited from ContainerProperty

#<<, child_class, #each, #initialize, #to_xml

Methods inherited from BaseProperty

#default_name, #default_namespace, #default_tag, #initialize, #name, name, namespace, #namespace, #tag, tag, tag_is_one_of

Constructor Details

This class inherits a constructor from OpenXml::Docx::Properties::ContainerProperty

Instance Method Details

#render?Boolean

Returns:

  • (Boolean)


17
18
19
20
# File 'lib/openxml/docx/properties/columns.rb', line 17

def render?
  return true if %i(equal_width number separator space).any? { |attribute| !public_send(attribute).nil? }
  super
end