summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/stylesheet/table_style.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/axlsx/stylesheet/table_style.rb')
-rw-r--r--lib/axlsx/stylesheet/table_style.rb12
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/axlsx/stylesheet/table_style.rb b/lib/axlsx/stylesheet/table_style.rb
index 3184c042..324f33d6 100644
--- a/lib/axlsx/stylesheet/table_style.rb
+++ b/lib/axlsx/stylesheet/table_style.rb
@@ -36,7 +36,9 @@ module Axlsx
# @see table
def table=(v) Axlsx::validate_boolean v; @table=v end
-
+ # Serializes the object
+ # @param [String] str
+ # @return [String]
def to_xml_string(str = '')
attr = self.instance_values.select { |k, v| [:name, :pivot, :table].include? k }
attr[:count] = self.size
@@ -47,13 +49,5 @@ module Axlsx
str << '</tableStyle>'
end
- # Serializes the table style
- # @param [Nokogiri::XML::Builder] xml The document builder instance this objects xml will be added to.
- # @return [String]
- def to_xml(xml)
- attr = self.instance_values.select { |k, v| [:name, :pivot, :table].include? k }
- attr[:count] = self.size
- xml.tableStyle(attr) { self.each { |table_style_el| table_style_el.to_xml(xml) } }
- end
end
end