Sha256: a13f43704e9d8e359ce491f33f1f4cd6747c546776b265bc021617b8955cf692

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

#!/usr/bin/ruby -w

###############################################################################
#
# Simple example of merging cells using the WriteExcel module.
#
# This merges three cells using the "Centre Across Selection" alignment.
# This was the Excel 5 method of achieving a merge. Use the merge_range()
# worksheet method instead. See merge3.pl - merge6.pl.
#
# reverse('©'), August 2002, John McNamara, jmcnamara@cpan.org
#
# original written in Perl by John McNamara
# converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp
#

require 'rubygems'
require 'writeexcel'

# Create a new workbook and add a worksheet
workbook  = WriteExcel.new('merge1.xls')
worksheet = workbook.add_worksheet


# Increase the cell size of the merged cells to highlight the formatting.
worksheet.set_column('B:D', 20)
worksheet.set_row(2, 30)


# Create a merge format
format = workbook.add_format(:center_across => 1)


# Only one cell should contain text, the others should be blank.
worksheet.write(2, 1, "Center across selection", format)
worksheet.write_blank(2, 2,                 format)
worksheet.write_blank(2, 3,                 format)

workbook.close

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
writeexcel-0.3.5 examples/merge1.rb
writeexcel-0.3.4 examples/merge1.rb
writeexcel-0.3.3 examples/merge1.rb
writeexcel-0.3.2 examples/merge1.rb
writeexcel-0.3.1 examples/merge1.rb
writeexcel-0.3.0 examples/merge1.rb