ricardoo27-writeexcel 0.6.12.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (245) hide show
  1. data/.document +5 -0
  2. data/.gitattributes +1 -0
  3. data/README.rdoc +136 -0
  4. data/Rakefile +52 -0
  5. data/VERSION +1 -0
  6. data/charts/chartex.rb +316 -0
  7. data/charts/demo1.rb +46 -0
  8. data/charts/demo101.bin +0 -0
  9. data/charts/demo2.rb +65 -0
  10. data/charts/demo201.bin +0 -0
  11. data/charts/demo3.rb +117 -0
  12. data/charts/demo301.bin +0 -0
  13. data/charts/demo4.rb +119 -0
  14. data/charts/demo401.bin +0 -0
  15. data/charts/demo5.rb +48 -0
  16. data/charts/demo501.bin +0 -0
  17. data/examples/a_simple.rb +43 -0
  18. data/examples/autofilter.rb +265 -0
  19. data/examples/bigfile.rb +30 -0
  20. data/examples/chart_area.rb +121 -0
  21. data/examples/chart_bar.rb +120 -0
  22. data/examples/chart_column.rb +120 -0
  23. data/examples/chart_line.rb +120 -0
  24. data/examples/chart_pie.rb +108 -0
  25. data/examples/chart_scatter.rb +121 -0
  26. data/examples/chart_stock.rb +148 -0
  27. data/examples/chess.rb +142 -0
  28. data/examples/colors.rb +129 -0
  29. data/examples/comments1.rb +27 -0
  30. data/examples/comments2.rb +352 -0
  31. data/examples/copyformat.rb +52 -0
  32. data/examples/data_validate.rb +279 -0
  33. data/examples/date_time.rb +87 -0
  34. data/examples/defined_name.rb +32 -0
  35. data/examples/demo.rb +124 -0
  36. data/examples/diag_border.rb +36 -0
  37. data/examples/formats.rb +490 -0
  38. data/examples/formula_result.rb +30 -0
  39. data/examples/header.rb +137 -0
  40. data/examples/hide_sheet.rb +29 -0
  41. data/examples/hyperlink.rb +43 -0
  42. data/examples/images.rb +63 -0
  43. data/examples/indent.rb +31 -0
  44. data/examples/merge1.rb +40 -0
  45. data/examples/merge2.rb +45 -0
  46. data/examples/merge3.rb +66 -0
  47. data/examples/merge4.rb +83 -0
  48. data/examples/merge5.rb +80 -0
  49. data/examples/merge6.rb +67 -0
  50. data/examples/outline.rb +255 -0
  51. data/examples/outline_collapsed.rb +209 -0
  52. data/examples/panes.rb +113 -0
  53. data/examples/password_protection.rb +33 -0
  54. data/examples/properties.rb +34 -0
  55. data/examples/properties_jp.rb +33 -0
  56. data/examples/protection.rb +47 -0
  57. data/examples/regions.rb +53 -0
  58. data/examples/repeat.rb +43 -0
  59. data/examples/republic.png +0 -0
  60. data/examples/right_to_left.rb +27 -0
  61. data/examples/row_wrap.rb +53 -0
  62. data/examples/set_first_sheet.rb +14 -0
  63. data/examples/stats.rb +74 -0
  64. data/examples/stocks.rb +81 -0
  65. data/examples/store_formula.rb +15 -0
  66. data/examples/tab_colors.rb +31 -0
  67. data/examples/utf8.rb +15 -0
  68. data/examples/write_arrays.rb +83 -0
  69. data/html/en/doc_en.html +5946 -0
  70. data/html/images/a_simple.jpg +0 -0
  71. data/html/images/area1.jpg +0 -0
  72. data/html/images/bar1.jpg +0 -0
  73. data/html/images/chart_area.xls +0 -0
  74. data/html/images/column1.jpg +0 -0
  75. data/html/images/data_validation.jpg +0 -0
  76. data/html/images/line1.jpg +0 -0
  77. data/html/images/pie1.jpg +0 -0
  78. data/html/images/regions.jpg +0 -0
  79. data/html/images/scatter1.jpg +0 -0
  80. data/html/images/stats.jpg +0 -0
  81. data/html/images/stock1.jpg +0 -0
  82. data/html/images/stocks.jpg +0 -0
  83. data/html/index.html +16 -0
  84. data/html/style.css +433 -0
  85. data/lib/writeexcel.rb +1159 -0
  86. data/lib/writeexcel/biffwriter.rb +223 -0
  87. data/lib/writeexcel/caller_info.rb +12 -0
  88. data/lib/writeexcel/cell_range.rb +332 -0
  89. data/lib/writeexcel/chart.rb +1968 -0
  90. data/lib/writeexcel/charts/area.rb +154 -0
  91. data/lib/writeexcel/charts/bar.rb +177 -0
  92. data/lib/writeexcel/charts/column.rb +156 -0
  93. data/lib/writeexcel/charts/external.rb +66 -0
  94. data/lib/writeexcel/charts/line.rb +154 -0
  95. data/lib/writeexcel/charts/pie.rb +169 -0
  96. data/lib/writeexcel/charts/scatter.rb +192 -0
  97. data/lib/writeexcel/charts/stock.rb +213 -0
  98. data/lib/writeexcel/col_info.rb +87 -0
  99. data/lib/writeexcel/colors.rb +68 -0
  100. data/lib/writeexcel/comments.rb +460 -0
  101. data/lib/writeexcel/compatibility.rb +65 -0
  102. data/lib/writeexcel/convert_date_time.rb +117 -0
  103. data/lib/writeexcel/data_validations.rb +370 -0
  104. data/lib/writeexcel/debug_info.rb +41 -0
  105. data/lib/writeexcel/embedded_chart.rb +35 -0
  106. data/lib/writeexcel/excelformula.y +139 -0
  107. data/lib/writeexcel/excelformulaparser.rb +587 -0
  108. data/lib/writeexcel/format.rb +1575 -0
  109. data/lib/writeexcel/formula.rb +987 -0
  110. data/lib/writeexcel/helper.rb +78 -0
  111. data/lib/writeexcel/image.rb +218 -0
  112. data/lib/writeexcel/olewriter.rb +305 -0
  113. data/lib/writeexcel/outline.rb +24 -0
  114. data/lib/writeexcel/properties.rb +242 -0
  115. data/lib/writeexcel/shared_string_table.rb +153 -0
  116. data/lib/writeexcel/storage_lite.rb +984 -0
  117. data/lib/writeexcel/workbook.rb +2478 -0
  118. data/lib/writeexcel/worksheet.rb +6925 -0
  119. data/lib/writeexcel/worksheets.rb +25 -0
  120. data/lib/writeexcel/write_file.rb +63 -0
  121. data/test/excelfile/Chart1.xls +0 -0
  122. data/test/excelfile/Chart2.xls +0 -0
  123. data/test/excelfile/Chart3.xls +0 -0
  124. data/test/excelfile/Chart4.xls +0 -0
  125. data/test/excelfile/Chart5.xls +0 -0
  126. data/test/helper.rb +31 -0
  127. data/test/perl_output/Chart1.xls.data +0 -0
  128. data/test/perl_output/Chart2.xls.data +0 -0
  129. data/test/perl_output/Chart3.xls.data +0 -0
  130. data/test/perl_output/Chart4.xls.data +0 -0
  131. data/test/perl_output/Chart5.xls.data +0 -0
  132. data/test/perl_output/README +31 -0
  133. data/test/perl_output/a_simple.xls +0 -0
  134. data/test/perl_output/autofilter.xls +0 -0
  135. data/test/perl_output/biff_add_continue_testdata +0 -0
  136. data/test/perl_output/chart_area.xls +0 -0
  137. data/test/perl_output/chart_bar.xls +0 -0
  138. data/test/perl_output/chart_column.xls +0 -0
  139. data/test/perl_output/chart_line.xls +0 -0
  140. data/test/perl_output/chess.xls +0 -0
  141. data/test/perl_output/colors.xls +0 -0
  142. data/test/perl_output/comments0.xls +0 -0
  143. data/test/perl_output/comments1.xls +0 -0
  144. data/test/perl_output/comments2.xls +0 -0
  145. data/test/perl_output/data_validate.xls +0 -0
  146. data/test/perl_output/date_time.xls +0 -0
  147. data/test/perl_output/defined_name.xls +0 -0
  148. data/test/perl_output/demo.xls +0 -0
  149. data/test/perl_output/demo101.bin +0 -0
  150. data/test/perl_output/demo201.bin +0 -0
  151. data/test/perl_output/demo301.bin +0 -0
  152. data/test/perl_output/demo401.bin +0 -0
  153. data/test/perl_output/demo501.bin +0 -0
  154. data/test/perl_output/diag_border.xls +0 -0
  155. data/test/perl_output/f_font_biff +0 -0
  156. data/test/perl_output/f_font_key +1 -0
  157. data/test/perl_output/f_xf_biff +0 -0
  158. data/test/perl_output/file_font_biff +0 -0
  159. data/test/perl_output/file_font_key +1 -0
  160. data/test/perl_output/file_xf_biff +0 -0
  161. data/test/perl_output/formula_result.xls +0 -0
  162. data/test/perl_output/headers.xls +0 -0
  163. data/test/perl_output/hidden.xls +0 -0
  164. data/test/perl_output/hide_zero.xls +0 -0
  165. data/test/perl_output/hyperlink.xls +0 -0
  166. data/test/perl_output/images.xls +0 -0
  167. data/test/perl_output/indent.xls +0 -0
  168. data/test/perl_output/merge1.xls +0 -0
  169. data/test/perl_output/merge2.xls +0 -0
  170. data/test/perl_output/merge3.xls +0 -0
  171. data/test/perl_output/merge4.xls +0 -0
  172. data/test/perl_output/merge5.xls +0 -0
  173. data/test/perl_output/merge6.xls +0 -0
  174. data/test/perl_output/ole_write_header +0 -0
  175. data/test/perl_output/outline.xls +0 -0
  176. data/test/perl_output/outline_collapsed.xls +0 -0
  177. data/test/perl_output/panes.xls +0 -0
  178. data/test/perl_output/password_protection.xls +0 -0
  179. data/test/perl_output/protection.xls +0 -0
  180. data/test/perl_output/regions.xls +0 -0
  181. data/test/perl_output/right_to_left.xls +0 -0
  182. data/test/perl_output/set_first_sheet.xls +0 -0
  183. data/test/perl_output/stats.xls +0 -0
  184. data/test/perl_output/stocks.xls +0 -0
  185. data/test/perl_output/store_formula.xls +0 -0
  186. data/test/perl_output/tab_colors.xls +0 -0
  187. data/test/perl_output/unicode_cyrillic.xls +0 -0
  188. data/test/perl_output/utf8.xls +0 -0
  189. data/test/perl_output/workbook1.xls +0 -0
  190. data/test/perl_output/workbook2.xls +0 -0
  191. data/test/perl_output/ws_colinfo +1 -0
  192. data/test/perl_output/ws_store_colinfo +0 -0
  193. data/test/perl_output/ws_store_dimensions +0 -0
  194. data/test/perl_output/ws_store_filtermode +0 -0
  195. data/test/perl_output/ws_store_filtermode_off +0 -0
  196. data/test/perl_output/ws_store_filtermode_on +0 -0
  197. data/test/perl_output/ws_store_selection +0 -0
  198. data/test/perl_output/ws_store_window2 +1 -0
  199. data/test/republic.png +0 -0
  200. data/test/test_00_IEEE_double.rb +13 -0
  201. data/test/test_01_add_worksheet.rb +10 -0
  202. data/test/test_02_merge_formats.rb +49 -0
  203. data/test/test_04_dimensions.rb +388 -0
  204. data/test/test_05_rows.rb +175 -0
  205. data/test/test_06_extsst.rb +74 -0
  206. data/test/test_11_date_time.rb +475 -0
  207. data/test/test_12_date_only.rb +525 -0
  208. data/test/test_13_date_seconds.rb +477 -0
  209. data/test/test_21_escher.rb +624 -0
  210. data/test/test_22_mso_drawing_group.rb +741 -0
  211. data/test/test_23_note.rb +57 -0
  212. data/test/test_24_txo.rb +74 -0
  213. data/test/test_25_position_object.rb +80 -0
  214. data/test/test_26_autofilter.rb +309 -0
  215. data/test/test_27_autofilter.rb +126 -0
  216. data/test/test_28_autofilter.rb +156 -0
  217. data/test/test_29_process_jpg.rb +670 -0
  218. data/test/test_30_validation_dval.rb +74 -0
  219. data/test/test_31_validation_dv_strings.rb +123 -0
  220. data/test/test_32_validation_dv_formula.rb +203 -0
  221. data/test/test_40_property_types.rb +188 -0
  222. data/test/test_41_properties.rb +235 -0
  223. data/test/test_42_set_properties.rb +434 -0
  224. data/test/test_50_name_stored.rb +295 -0
  225. data/test/test_51_name_print_area.rb +353 -0
  226. data/test/test_52_name_print_titles.rb +450 -0
  227. data/test/test_53_autofilter.rb +199 -0
  228. data/test/test_60_chart_generic.rb +574 -0
  229. data/test/test_61_chart_subclasses.rb +84 -0
  230. data/test/test_62_chart_formats.rb +268 -0
  231. data/test/test_63_chart_area_formats.rb +645 -0
  232. data/test/test_biff.rb +71 -0
  233. data/test/test_big_workbook.rb +17 -0
  234. data/test/test_compatibility.rb +12 -0
  235. data/test/test_example_match.rb +3246 -0
  236. data/test/test_format.rb +1189 -0
  237. data/test/test_formula.rb +61 -0
  238. data/test/test_ole.rb +102 -0
  239. data/test/test_storage_lite.rb +116 -0
  240. data/test/test_workbook.rb +146 -0
  241. data/test/test_worksheet.rb +106 -0
  242. data/utils/add_magic_comment.rb +80 -0
  243. data/writeexcel.gemspec +278 -0
  244. data/writeexcel.rdoc +1425 -0
  245. metadata +292 -0
@@ -0,0 +1,52 @@
1
+ #!/usr/bin/ruby -w
2
+ # -*- coding: utf-8 -*-
3
+
4
+ ###############################################################################
5
+ #
6
+ # Example of how to use the format copying method with WriteExcel #
7
+ # reverse('©'), March 2001, John McNamara, jmcnamara@cpan.org
8
+ #
9
+ # original written in Perl by John McNamara
10
+ # converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp
11
+ #
12
+ require 'rubygems'
13
+ require 'writeexcel'
14
+
15
+ # Create workbook1
16
+ workbook1 = WriteExcel.new("workbook1.xls")
17
+ worksheet1 = workbook1.add_worksheet
18
+ format1a = workbook1.add_format
19
+ format1b = workbook1.add_format
20
+
21
+ # Create workbook2
22
+ workbook2 = WriteExcel.new("workbook2.xls")
23
+ worksheet2 = workbook2.add_worksheet
24
+ format2a = workbook2.add_format
25
+ format2b = workbook2.add_format
26
+
27
+ # Create a global format object that isn't tied to a workbook
28
+ global_format = Format.new
29
+
30
+ # Set the formatting
31
+ global_format.set_color('blue')
32
+ global_format.set_bold
33
+ global_format.set_italic
34
+
35
+ # Create another example format
36
+ format1b.set_color('red')
37
+
38
+ # Copy the global format properties to the worksheet formats
39
+ format1a.copy(global_format)
40
+ format2a.copy(global_format)
41
+
42
+ # Copy a format from worksheet1 to worksheet2
43
+ format2b.copy(format1b)
44
+
45
+ # Write some output
46
+ worksheet1.write(0, 0, "Ciao", format1a)
47
+ worksheet1.write(1, 0, "Ciao", format1b)
48
+
49
+ worksheet2.write(0, 0, "Hello", format2a)
50
+ worksheet2.write(1, 0, "Hello", format2b)
51
+ workbook1.close
52
+ workbook2.close
@@ -0,0 +1,279 @@
1
+ #!/usr/bin/ruby -w
2
+ # -*- coding: utf-8 -*-
3
+
4
+ ###############################################################################
5
+ #
6
+ # Example of how to add data validation and dropdown lists to a
7
+ # WriteExcel file.
8
+ #
9
+ # reverse('©'), August 2008, John McNamara, jmcnamara@cpan.org
10
+ #
11
+ # original written in Perl by John McNamara
12
+ # converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp
13
+ #
14
+
15
+ require 'rubygems'
16
+ require 'writeexcel'
17
+
18
+ workbook = WriteExcel.new('data_validate.xls')
19
+ worksheet = workbook.add_worksheet
20
+
21
+ # Add a format for the header cells.
22
+ header_format = workbook.add_format(
23
+ :border => 1,
24
+ :bg_color => 43,
25
+ :bold => 1,
26
+ :text_wrap => 1,
27
+ :valign => 'vcenter',
28
+ :indent => 1
29
+ )
30
+
31
+ # Set up layout of the worksheet.
32
+ worksheet.set_column('A:A', 64)
33
+ worksheet.set_column('B:B', 15)
34
+ worksheet.set_column('D:D', 15)
35
+ worksheet.set_row(0, 36)
36
+ worksheet.set_selection('B3')
37
+
38
+
39
+ # Write the header cells and some data that will be used in the examples.
40
+ row = 0
41
+ heading1 = 'Some examples of data validation in WriteExcel'
42
+ heading2 = 'Enter values in this column'
43
+ heading3 = 'Sample Data'
44
+
45
+ worksheet.write('A1', heading1, header_format)
46
+ worksheet.write('B1', heading2, header_format)
47
+ worksheet.write('D1', heading3, header_format)
48
+
49
+ worksheet.write('D3', ['Integers', 1, 10])
50
+ worksheet.write('D4', ['List data', 'open', 'high', 'close'])
51
+ worksheet.write('D5', ['Formula', '=AND(F5=50,G5=60)', 50, 60])
52
+
53
+
54
+ #
55
+ # Example 1. Limiting input to an integer in a fixed range.
56
+ #
57
+ txt = 'Enter an integer between 1 and 10'
58
+ row += 2
59
+
60
+ worksheet.write(row, 0, txt)
61
+ worksheet.data_validation(row, 1,
62
+ {
63
+ :validate => 'integer',
64
+ :criteria => 'between',
65
+ :minimum => 1,
66
+ :maximum => 10
67
+ })
68
+
69
+
70
+ #
71
+ # Example 2. Limiting input to an integer outside a fixed range.
72
+ #
73
+ txt = 'Enter an integer that is not between 1 and 10 (using cell references)'
74
+ row += 2
75
+
76
+ worksheet.write(row, 0, txt)
77
+ worksheet.data_validation(row, 1,
78
+ {
79
+ :validate => 'integer',
80
+ :criteria => 'not between',
81
+ :minimum => '=E3',
82
+ :maximum => '=F3'
83
+ })
84
+
85
+
86
+ #
87
+ # Example 3. Limiting input to an integer greater than a fixed value.
88
+ #
89
+ txt = 'Enter an integer greater than 0'
90
+ row += 2
91
+
92
+ worksheet.write(row, 0, txt)
93
+ worksheet.data_validation(row, 1,
94
+ {
95
+ :validate => 'integer',
96
+ :criteria => '>',
97
+ :value => 0
98
+ })
99
+
100
+
101
+ #
102
+ # Example 4. Limiting input to an integer less than a fixed value.
103
+ #
104
+ txt = 'Enter an integer less than 10'
105
+ row += 2
106
+
107
+ worksheet.write(row, 0, txt)
108
+ worksheet.data_validation(row, 1,
109
+ {
110
+ :validate => 'integer',
111
+ :criteria => '<',
112
+ :value => 10
113
+ })
114
+
115
+
116
+ #
117
+ # Example 5. Limiting input to a decimal in a fixed range.
118
+ #
119
+ txt = 'Enter a decimal between 0.1 and 0.5'
120
+ row += 2
121
+
122
+ worksheet.write(row, 0, txt)
123
+ worksheet.data_validation(row, 1,
124
+ {
125
+ :validate => 'decimal',
126
+ :criteria => 'between',
127
+ :minimum => 0.1,
128
+ :maximum => 0.5
129
+ })
130
+
131
+
132
+ #
133
+ # Example 6. Limiting input to a value in a dropdown list.
134
+ #
135
+ txt = 'Select a value from a drop down list'
136
+ row += 2
137
+ bp=1
138
+ worksheet.write(row, 0, txt)
139
+ worksheet.data_validation(row, 1,
140
+ {
141
+ :validate => 'list',
142
+ :source => ['open', 'high', 'close']
143
+ })
144
+
145
+
146
+ #
147
+ # Example 6. Limiting input to a value in a dropdown list.
148
+ #
149
+ txt = 'Select a value from a drop down list (using a cell range)'
150
+ row += 2
151
+
152
+ worksheet.write(row, 0, txt)
153
+ worksheet.data_validation(row, 1,
154
+ {
155
+ :validate => 'list',
156
+ :source => '=E4:G4'
157
+ })
158
+
159
+
160
+ #
161
+ # Example 7. Limiting input to a date in a fixed range.
162
+ #
163
+ txt = 'Enter a date between 1/1/2008 and 12/12/2008'
164
+ row += 2
165
+
166
+ worksheet.write(row, 0, txt)
167
+ worksheet.data_validation(row, 1,
168
+ {
169
+ :validate => 'date',
170
+ :criteria => 'between',
171
+ :minimum => '2008-01-01T',
172
+ :maximum => '2008-12-12T'
173
+ })
174
+
175
+
176
+ #
177
+ # Example 8. Limiting input to a time in a fixed range.
178
+ #
179
+ txt = 'Enter a time between 6:00 and 12:00'
180
+ row += 2
181
+
182
+ worksheet.write(row, 0, txt)
183
+ worksheet.data_validation(row, 1,
184
+ {
185
+ :validate => 'time',
186
+ :criteria => 'between',
187
+ :minimum => 'T06:00',
188
+ :maximum => 'T12:00'
189
+ })
190
+
191
+
192
+ #
193
+ # Example 9. Limiting input to a string greater than a fixed length.
194
+ #
195
+ txt = 'Enter a string longer than 3 characters'
196
+ row += 2
197
+
198
+ worksheet.write(row, 0, txt)
199
+ worksheet.data_validation(row, 1,
200
+ {
201
+ :validate => 'length',
202
+ :criteria => '>',
203
+ :value => 3
204
+ })
205
+
206
+
207
+ #
208
+ # Example 10. Limiting input based on a formula.
209
+ #
210
+ txt = 'Enter a value if the following is true "=AND(F5=50,G5=60)"'
211
+ row += 2
212
+
213
+ worksheet.write(row, 0, txt)
214
+ worksheet.data_validation(row, 1,
215
+ {
216
+ :validate => 'custom',
217
+ :value => '=AND(F5=50,G5=60)'
218
+ })
219
+
220
+
221
+ #
222
+ # Example 11. Displaying and modify data validation messages.
223
+ #
224
+ txt = 'Displays a message when you select the cell'
225
+ row += 2
226
+
227
+ worksheet.write(row, 0, txt)
228
+ worksheet.data_validation(row, 1,
229
+ {
230
+ :validate => 'integer',
231
+ :criteria => 'between',
232
+ :minimum => 1,
233
+ :maximum => 100,
234
+ :input_title => 'Enter an integer:',
235
+ :input_message => 'between 1 and 100'
236
+ })
237
+
238
+
239
+ #
240
+ # Example 12. Displaying and modify data validation messages.
241
+ #
242
+ txt = 'Display a custom error message when integer isn\'t between 1 and 100'
243
+ row += 2
244
+
245
+ worksheet.write(row, 0, txt)
246
+ worksheet.data_validation(row, 1,
247
+ {
248
+ :validate => 'integer',
249
+ :criteria => 'between',
250
+ :minimum => 1,
251
+ :maximum => 100,
252
+ :input_title => 'Enter an integer:',
253
+ :input_message => 'between 1 and 100',
254
+ :error_title => 'Input value is not valid!',
255
+ :error_message => 'It should be an integer between 1 and 100'
256
+ })
257
+
258
+
259
+ #
260
+ # Example 13. Displaying and modify data validation messages.
261
+ #
262
+ txt = 'Display a custom information message when integer isn\'t between 1 and 100'
263
+ row += 2
264
+
265
+ worksheet.write(row, 0, txt)
266
+ worksheet.data_validation(row, 1,
267
+ {
268
+ :validate => 'integer',
269
+ :criteria => 'between',
270
+ :minimum => 1,
271
+ :maximum => 100,
272
+ :input_title => 'Enter an integer:',
273
+ :input_message => 'between 1 and 100',
274
+ :error_title => 'Input value is not valid!',
275
+ :error_message => 'It should be an integer between 1 and 100',
276
+ :error_type => 'information'
277
+ })
278
+
279
+ workbook.close
@@ -0,0 +1,87 @@
1
+ #!/usr/bin/ruby -w
2
+ # -*- coding: utf-8 -*-
3
+
4
+ ###############################################################################
5
+ #
6
+ # WriteExcel example of writing dates and times using the
7
+ # write_date_time() Worksheet method.
8
+ #
9
+ # reverse('©'), August 2004, John McNamara, jmcnamara@cpan.org
10
+ #
11
+ # original written in Perl by John McNamara
12
+ # converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp
13
+ #
14
+
15
+ require 'rubygems'
16
+ require 'writeexcel'
17
+
18
+ # Create a new workbook and add a worksheet
19
+ workbook = WriteExcel.new("date_time.xls")
20
+ worksheet = workbook.add_worksheet
21
+ bold = workbook.add_format(:bold => 1)
22
+
23
+ # Expand the first column so that the date is visible.
24
+ worksheet.set_column("A:B", 30)
25
+
26
+ # Write the column headers
27
+ worksheet.write('A1', 'Formatted date', bold)
28
+ worksheet.write('B1', 'Format', bold)
29
+
30
+ # Examples date and time formats. In the output file compare how changing
31
+ # the format codes change the appearance of the date.
32
+ #
33
+ date_formats = [
34
+ 'dd/mm/yy',
35
+ 'mm/dd/yy',
36
+ '',
37
+ 'd mm yy',
38
+ 'dd mm yy',
39
+ '',
40
+ 'dd m yy',
41
+ 'dd mm yy',
42
+ 'dd mmm yy',
43
+ 'dd mmmm yy',
44
+ '',
45
+ 'dd mm y',
46
+ 'dd mm yyy',
47
+ 'dd mm yyyy',
48
+ '',
49
+ 'd mmmm yyyy',
50
+ '',
51
+ 'dd/mm/yy',
52
+ 'dd/mm/yy hh:mm',
53
+ 'dd/mm/yy hh:mm:ss',
54
+ 'dd/mm/yy hh:mm:ss.000',
55
+ '',
56
+ 'hh:mm',
57
+ 'hh:mm:ss',
58
+ 'hh:mm:ss.000',
59
+ ]
60
+
61
+ # Write the same date and time using each of the above formats. The empty
62
+ # string formats create a blank line to make the example clearer.
63
+ #
64
+ row = 0
65
+ date_formats.each do |date_format|
66
+ row += 1
67
+ next if date_format == ''
68
+
69
+ # Create a format for the date or time.
70
+ format = workbook.add_format(
71
+ :num_format => date_format,
72
+ :align => 'left'
73
+ )
74
+
75
+ # Write the same date using different formats.
76
+ worksheet.write_date_time(row, 0, '2004-08-01T12:30:45.123', format)
77
+ worksheet.write(row, 1, date_format)
78
+ end
79
+
80
+ # The following is an example of an invalid date. It is written as a string instead
81
+ # of a number. This is also Excel's default behaviour.
82
+ #
83
+ row += 2
84
+ worksheet.write_date_time(row, 0, '2004-13-01T12:30:45.123')
85
+ worksheet.write(row, 1, 'Invalid date. Written as string.', bold)
86
+
87
+ workbook.close
@@ -0,0 +1,32 @@
1
+ #!/usr/bin/ruby -w
2
+ # -*- coding: utf-8 -*-
3
+
4
+ ###############################################################################
5
+ #
6
+ # Example of how to create defined names in a WriteExcel file.
7
+ #
8
+ # reverse('ゥ'), September 2008, John McNamara, jmcnamara@cpan.org
9
+ #
10
+ # original written in Perl by John McNamara
11
+ # converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp
12
+ #
13
+
14
+ require 'writeexcel'
15
+
16
+ workbook = WriteExcel.new('defined_name.xls')
17
+ worksheet1 = workbook.add_worksheet
18
+ worksheet2 = workbook.add_worksheet
19
+
20
+ workbook.define_name('Exchange_rate', '=0.96')
21
+ workbook.define_name('Sales', '=Sheet1!$G$1:$H$10')
22
+ workbook.define_name('Sheet2!Sales', '=Sheet2!$G$1:$G$10')
23
+
24
+ workbook.sheets.each do |worksheet|
25
+ worksheet.set_column('A:A', 45)
26
+ worksheet.write('A2', 'This worksheet contains some defined names,')
27
+ worksheet.write('A3', 'See the Insert -> Name -> Define dialog.')
28
+ end
29
+
30
+ worksheet1.write('A4', '=Exchange_rate')
31
+
32
+ workbook.close