-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathmerge4.rb
executable file
·79 lines (66 loc) · 1.92 KB
/
merge4.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
###############################################################################
#
# Example of how to use the Excel::Writer::XLSX merge_range workbook
# method with complex formatting.
#
# reverse(c), September 2002, John McNamara, [email protected]
# convert to ruby by Hideo NAKAMURA, [email protected]
#
require 'write_xlsx'
# Create a new workbook and add a worksheet
workbook = WriteXLSX.new('merge4.xlsx')
worksheet = workbook.add_worksheet
# Increase the cell size of the merged cells to highlight the formatting.
(1..11).each { |i| worksheet.set_row(i, 30) }
worksheet.set_column('B:D', 20)
###############################################################################
#
# Example 1: Text centered vertically and horizontally
#
format1 = workbook.add_format(
border: 6,
bold: 1,
color: 'red',
valign: 'vcenter',
align: 'center'
)
worksheet.merge_range('B2:D3', 'Vertical and horizontal', format1)
###############################################################################
#
# Example 2: Text aligned to the top and left
#
format2 = workbook.add_format(
border: 6,
bold: 1,
color: 'red',
valign: 'top',
align: 'left'
)
worksheet.merge_range('B5:D6', 'Aligned to the top and left', format2)
###############################################################################
#
# Example 3: Text aligned to the bottom and right
#
format3 = workbook.add_format(
border: 6,
bold: 1,
color: 'red',
valign: 'bottom',
align: 'right'
)
worksheet.merge_range('B8:D9', 'Aligned to the bottom and right', format3)
###############################################################################
#
# Example 4: Text justified (i.e. wrapped) in the cell
#
format4 = workbook.add_format(
border: 6,
bold: 1,
color: 'red',
valign: 'top',
align: 'justify'
)
worksheet.merge_range('B11:D12', 'Justified: ' << ('so on and ' * 18), format4)
workbook.close