examples/shape4.rb in write_xlsx-1.09.4 vs examples/shape4.rb in write_xlsx-1.09.5
- old
+ new
@@ -17,14 +17,14 @@
worksheet.hide_gridlines(2)
type = 'rect'
shape = workbook.add_shape(
- :type => type,
- :width => 90,
- :height => 90
- )
+ :type => type,
+ :width => 90,
+ :height => 90
+)
(1..10).each do |n|
# Change the last 5 rectangles to stars. Previously
# inserted shapes stay as rectangles.
type = 'star5' if n == 6
@@ -32,14 +32,14 @@
shape.text = "#{type} #{n}"
worksheet.insert_shape('A1', shape, n * 100, 50)
end
stencil = workbook.add_shape(
- :stencil => 1, # The default.
- :width => 90,
- :height => 90,
- :text => 'started as a box'
- )
+ :stencil => 1, # The default.
+ :width => 90,
+ :height => 90,
+ :text => 'started as a box'
+)
worksheet.insert_shape('A1', stencil, 100, 150)
stencil.stencil = 0
worksheet.insert_shape('A1', stencil, 200, 150)
worksheet.insert_shape('A1', stencil, 300, 150)