axlsx 1.0.10 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/CHANGELOG.md +14 -0
  2. data/Gemfile +3 -7
  3. data/Gemfile.lock +17 -8
  4. data/README.md +88 -59
  5. data/axlsx.gemspec +9 -3
  6. data/doc/Axlsx.html +482 -248
  7. data/doc/Axlsx/App.html +237 -159
  8. data/doc/Axlsx/Axis.html +75 -51
  9. data/doc/Axlsx/Bar3DChart.html +75 -53
  10. data/doc/Axlsx/BarSeries.html +45 -31
  11. data/doc/Axlsx/Border.html +70 -50
  12. data/doc/Axlsx/BorderPr.html +80 -62
  13. data/doc/Axlsx/CatAxis.html +62 -43
  14. data/doc/Axlsx/CatAxisData.html +23 -16
  15. data/doc/Axlsx/Cell.html +2022 -393
  16. data/doc/Axlsx/CellAlignment.html +103 -75
  17. data/doc/Axlsx/CellProtection.html +44 -30
  18. data/doc/Axlsx/CellStyle.html +66 -46
  19. data/doc/Axlsx/Chart.html +159 -108
  20. data/doc/Axlsx/Color.html +73 -52
  21. data/doc/Axlsx/ContentType.html +20 -14
  22. data/doc/Axlsx/Core.html +29 -20
  23. data/doc/Axlsx/DataTypeValidator.html +27 -19
  24. data/doc/Axlsx/Default.html +39 -27
  25. data/doc/Axlsx/Drawing.html +104 -70
  26. data/doc/Axlsx/Fill.html +33 -23
  27. data/doc/Axlsx/Font.html +132 -98
  28. data/doc/Axlsx/GradientFill.html +70 -48
  29. data/doc/Axlsx/GradientStop.html +31 -21
  30. data/doc/Axlsx/GraphicFrame.html +40 -27
  31. data/doc/Axlsx/Line3DChart.html +62 -43
  32. data/doc/Axlsx/LineSeries.html +37 -25
  33. data/doc/Axlsx/Marker.html +63 -43
  34. data/doc/Axlsx/NumFmt.html +79 -65
  35. data/doc/Axlsx/OneCellAnchor.html +78 -54
  36. data/doc/Axlsx/Override.html +39 -27
  37. data/doc/Axlsx/Package.html +103 -163
  38. data/doc/Axlsx/Parser.html +549 -0
  39. data/doc/Axlsx/PatternFill.html +66 -51
  40. data/doc/Axlsx/Pic.html +230 -123
  41. data/doc/Axlsx/PictureLocking.html +1159 -0
  42. data/doc/Axlsx/Pie3DChart.html +23 -16
  43. data/doc/Axlsx/PieSeries.html +44 -30
  44. data/doc/Axlsx/RegexValidator.html +14 -10
  45. data/doc/Axlsx/Relationship.html +40 -27
  46. data/doc/Axlsx/Relationships.html +20 -14
  47. data/doc/Axlsx/RestrictionValidator.html +25 -17
  48. data/doc/Axlsx/Row.html +73 -53
  49. data/doc/Axlsx/Scaling.html +46 -31
  50. data/doc/Axlsx/SerAxis.html +49 -33
  51. data/doc/Axlsx/Series.html +51 -35
  52. data/doc/Axlsx/SeriesTitle.html +14 -10
  53. data/doc/Axlsx/Styles.html +210 -156
  54. data/doc/Axlsx/TableStyle.html +47 -32
  55. data/doc/Axlsx/TableStyleElement.html +75 -61
  56. data/doc/Axlsx/TableStyles.html +42 -28
  57. data/doc/Axlsx/Title.html +36 -25
  58. data/doc/Axlsx/TwoCellAnchor.html +83 -58
  59. data/doc/Axlsx/ValAxis.html +35 -24
  60. data/doc/Axlsx/ValAxisData.html +13 -9
  61. data/doc/Axlsx/View3D.html +64 -43
  62. data/doc/Axlsx/Workbook.html +305 -147
  63. data/doc/Axlsx/Worksheet.html +567 -271
  64. data/doc/Axlsx/Xf.html +114 -77
  65. data/doc/_index.html +15 -1
  66. data/doc/class_list.html +1 -1
  67. data/doc/css/style.css +1 -1
  68. data/doc/file.LICENSE.html +25 -21
  69. data/doc/file.README.html +89 -66
  70. data/doc/index.html +89 -66
  71. data/doc/js/app.js +4 -4
  72. data/doc/method_list.html +717 -413
  73. data/doc/top-level-namespace.html +1 -1
  74. data/examples/example.rb +52 -25
  75. data/examples/follow_20111202.xlsx +0 -0
  76. data/lib/axlsx.rb +14 -1
  77. data/lib/axlsx/drawing/chart.rb +20 -4
  78. data/lib/axlsx/drawing/drawing.rb +1 -1
  79. data/lib/axlsx/drawing/pic.rb +5 -2
  80. data/lib/axlsx/drawing/picture_locking.rb +72 -0
  81. data/lib/axlsx/package.rb +9 -7
  82. data/lib/axlsx/stylesheet/color.rb +19 -9
  83. data/lib/axlsx/stylesheet/styles.rb +2 -0
  84. data/lib/axlsx/util/constants.rb +6 -0
  85. data/lib/axlsx/util/parser.rb +43 -0
  86. data/lib/axlsx/version.rb +1 -1
  87. data/lib/axlsx/workbook/workbook.rb +21 -1
  88. data/lib/axlsx/workbook/worksheet/cell.rb +159 -7
  89. data/lib/axlsx/workbook/worksheet/row.rb +4 -2
  90. data/lib/axlsx/workbook/worksheet/worksheet.rb +38 -4
  91. data/test/drawing/tc_picture_locking.rb +73 -0
  92. data/test/rels/tc_relationships.rb +0 -1
  93. data/test/stylesheet/tc_styles.rb +0 -12
  94. data/test/tc_package.rb +5 -3
  95. data/test/workbook/tc_workbook.rb +7 -0
  96. data/test/workbook/worksheet/tc_cell.rb +102 -1
  97. data/test/workbook/worksheet/tc_worksheet.rb +17 -0
  98. metadata +79 -19
  99. data/doc/Axlsx/Ar.html +0 -196
  100. data/doc/Axlsx/Ar/ClassMethods.html +0 -188
  101. data/doc/Axlsx/Ar/InstanceMethods.html +0 -108
  102. data/doc/Axlsx/Ar/SingletonMethods.html +0 -312
@@ -96,8 +96,9 @@
96
96
 
97
97
  <h2>Overview</h2><div class="docstring">
98
98
  <div class="discussion">
99
-
100
- <p>A SerAxis object defines a series axis</p>
99
+ <p>
100
+ A SerAxis object defines a series axis
101
+ </p>
101
102
 
102
103
 
103
104
  </div>
@@ -133,8 +134,9 @@
133
134
 
134
135
 
135
136
 
136
- <span class="summary_desc"><div class='inline'>
137
- <p>The number of tick lables to skip between labels.</p>
137
+ <span class="summary_desc"><div class='inline'><p>
138
+ The number of tick lables to skip between labels.
139
+ </p>
138
140
  </div></span>
139
141
 
140
142
  </li>
@@ -159,8 +161,9 @@
159
161
 
160
162
 
161
163
 
162
- <span class="summary_desc"><div class='inline'>
163
- <p>The number of tickmarks to be skipped before the next one is rendered.</p>
164
+ <span class="summary_desc"><div class='inline'><p>
165
+ The number of tickmarks to be skipped before the next one is rendered.
166
+ </p>
164
167
  </div></span>
165
168
 
166
169
  </li>
@@ -205,8 +208,9 @@
205
208
 
206
209
 
207
210
 
208
- <span class="summary_desc"><div class='inline'>
209
- <p>Creates a new SerAxis object.</p>
211
+ <span class="summary_desc"><div class='inline'><p>
212
+ Creates a new SerAxis object.
213
+ </p>
210
214
  </div></span>
211
215
 
212
216
  </li>
@@ -228,8 +232,9 @@
228
232
 
229
233
 
230
234
 
231
- <span class="summary_desc"><div class='inline'>
232
- <p>Serializes the series axis.</p>
235
+ <span class="summary_desc"><div class='inline'><p>
236
+ Serializes the series axis.
237
+ </p>
233
238
  </div></span>
234
239
 
235
240
  </li>
@@ -255,8 +260,9 @@
255
260
 
256
261
  </p><div class="docstring">
257
262
  <div class="discussion">
258
-
259
- <p>Creates a new SerAxis object</p>
263
+ <p>
264
+ Creates a new SerAxis object
265
+ </p>
260
266
 
261
267
 
262
268
  </div>
@@ -275,8 +281,9 @@
275
281
 
276
282
 
277
283
  &mdash;
278
- <div class='inline'>
279
- <p>the id of this axis. Inherited</p>
284
+ <div class='inline'><p>
285
+ the id of this axis. Inherited
286
+ </p>
280
287
  </div>
281
288
 
282
289
  </li>
@@ -291,8 +298,9 @@
291
298
 
292
299
 
293
300
  &mdash;
294
- <div class='inline'>
295
- <p>the id of the perpendicular axis. Inherited</p>
301
+ <div class='inline'><p>
302
+ the id of the perpendicular axis. Inherited
303
+ </p>
296
304
  </div>
297
305
 
298
306
  </li>
@@ -309,8 +317,9 @@
309
317
 
310
318
 
311
319
  &mdash;
312
- <div class='inline'>
313
- <p>a customizable set of options</p>
320
+ <div class='inline'><p>
321
+ a customizable set of options
322
+ </p>
314
323
  </div>
315
324
 
316
325
  </li>
@@ -333,8 +342,9 @@
333
342
  <span class="default">
334
343
 
335
344
  </span>
336
- &mdash; <div class='inline'>
337
- <p>Inherited</p>
345
+ &mdash; <div class='inline'><p>
346
+ Inherited
347
+ </p>
338
348
  </div>
339
349
  </li>
340
350
 
@@ -344,8 +354,9 @@
344
354
  <span class="default">
345
355
 
346
356
  </span>
347
- &mdash; <div class='inline'>
348
- <p>Inherited</p>
357
+ &mdash; <div class='inline'><p>
358
+ Inherited
359
+ </p>
349
360
  </div>
350
361
  </li>
351
362
 
@@ -355,8 +366,9 @@
355
366
  <span class="default">
356
367
 
357
368
  </span>
358
- &mdash; <div class='inline'>
359
- <p>Inherited</p>
369
+ &mdash; <div class='inline'><p>
370
+ Inherited
371
+ </p>
360
372
  </div>
361
373
  </li>
362
374
 
@@ -423,8 +435,9 @@
423
435
 
424
436
  </p><div class="docstring">
425
437
  <div class="discussion">
426
-
427
- <p>The number of tick lables to skip between labels</p>
438
+ <p>
439
+ The number of tick lables to skip between labels
440
+ </p>
428
441
 
429
442
 
430
443
  </div>
@@ -479,8 +492,9 @@
479
492
 
480
493
  </p><div class="docstring">
481
494
  <div class="discussion">
482
-
483
- <p>The number of tickmarks to be skipped before the next one is rendered.</p>
495
+ <p>
496
+ The number of tickmarks to be skipped before the next one is rendered.
497
+ </p>
484
498
 
485
499
 
486
500
  </div>
@@ -539,8 +553,9 @@
539
553
 
540
554
  </p><div class="docstring">
541
555
  <div class="discussion">
542
-
543
- <p>Serializes the series axis</p>
556
+ <p>
557
+ Serializes the series axis
558
+ </p>
544
559
 
545
560
 
546
561
  </div>
@@ -559,8 +574,9 @@
559
574
 
560
575
 
561
576
  &mdash;
562
- <div class='inline'>
563
- <p>The document builder instance this objects xml will be added to.</p>
577
+ <div class='inline'><p>
578
+ The document builder instance this objects xml will be added to.
579
+ </p>
564
580
  </div>
565
581
 
566
582
  </li>
@@ -616,7 +632,7 @@
616
632
  </div>
617
633
 
618
634
  <div id="footer">
619
- Generated on Wed Nov 30 08:53:36 2011 by
635
+ Generated on Mon Dec 5 14:21:13 2011 by
620
636
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
621
637
  0.7.3 (ruby-1.8.7).
622
638
  </div>
@@ -97,14 +97,16 @@
97
97
 
98
98
  <div class="note notetag">
99
99
  <strong>Note:</strong>
100
- <div class='inline'>
101
- <p>The recommended way to manage series is to use Chart#add_series</p>
100
+ <div class='inline'><p>
101
+ The recommended way to manage series is to use Chart#add_series
102
+ </p>
102
103
  </div>
103
104
  </div>
104
105
 
105
-
106
- <p>A Series defines the common series attributes and is the super class for
107
- all concrete series types.</p>
106
+ <p>
107
+ A Series defines the common series attributes and is the super class for
108
+ all concrete series types.
109
+ </p>
108
110
 
109
111
 
110
112
  </div>
@@ -149,8 +151,9 @@ all concrete series types.</p>
149
151
 
150
152
 
151
153
 
152
- <span class="summary_desc"><div class='inline'>
153
- <p>The chart that owns this series.</p>
154
+ <span class="summary_desc"><div class='inline'><p>
155
+ The chart that owns this series.
156
+ </p>
154
157
  </div></span>
155
158
 
156
159
  </li>
@@ -175,8 +178,9 @@ all concrete series types.</p>
175
178
 
176
179
 
177
180
 
178
- <span class="summary_desc"><div class='inline'>
179
- <p>The title of the series.</p>
181
+ <span class="summary_desc"><div class='inline'><p>
182
+ The title of the series.
183
+ </p>
180
184
  </div></span>
181
185
 
182
186
  </li>
@@ -211,8 +215,9 @@ all concrete series types.</p>
211
215
 
212
216
 
213
217
 
214
- <span class="summary_desc"><div class='inline'>
215
- <p>The index of this series in the charts series.</p>
218
+ <span class="summary_desc"><div class='inline'><p>
219
+ The index of this series in the chart&#8217;s series.
220
+ </p>
216
221
  </div></span>
217
222
 
218
223
  </li>
@@ -236,8 +241,9 @@ all concrete series types.</p>
236
241
 
237
242
 
238
243
 
239
- <span class="summary_desc"><div class='inline'>
240
- <p>Creates a new series.</p>
244
+ <span class="summary_desc"><div class='inline'><p>
245
+ Creates a new series.
246
+ </p>
241
247
  </div></span>
242
248
 
243
249
  </li>
@@ -259,8 +265,9 @@ all concrete series types.</p>
259
265
 
260
266
 
261
267
 
262
- <span class="summary_desc"><div class='inline'>
263
- <p>The order of this series in the charts series.</p>
268
+ <span class="summary_desc"><div class='inline'><p>
269
+ The order of this series in the chart&#8217;s series.
270
+ </p>
264
271
  </div></span>
265
272
 
266
273
  </li>
@@ -303,8 +310,9 @@ all concrete series types.</p>
303
310
 
304
311
 
305
312
 
306
- <span class="summary_desc"><div class='inline'>
307
- <p>Serializes the series.</p>
313
+ <span class="summary_desc"><div class='inline'><p>
314
+ Serializes the series.
315
+ </p>
308
316
  </div></span>
309
317
 
310
318
  </li>
@@ -325,8 +333,9 @@ all concrete series types.</p>
325
333
 
326
334
  </p><div class="docstring">
327
335
  <div class="discussion">
328
-
329
- <p>Creates a new series</p>
336
+ <p>
337
+ Creates a new series
338
+ </p>
330
339
 
331
340
 
332
341
  </div>
@@ -358,8 +367,9 @@ all concrete series types.</p>
358
367
 
359
368
 
360
369
  &mdash;
361
- <div class='inline'>
362
- <p>a customizable set of options</p>
370
+ <div class='inline'><p>
371
+ a customizable set of options
372
+ </p>
363
373
  </div>
364
374
 
365
375
  </li>
@@ -445,8 +455,9 @@ all concrete series types.</p>
445
455
 
446
456
  </p><div class="docstring">
447
457
  <div class="discussion">
448
-
449
- <p>The chart that owns this series</p>
458
+ <p>
459
+ The chart that owns this series
460
+ </p>
450
461
 
451
462
 
452
463
  </div>
@@ -501,8 +512,9 @@ all concrete series types.</p>
501
512
 
502
513
  </p><div class="docstring">
503
514
  <div class="discussion">
504
-
505
- <p>The title of the series</p>
515
+ <p>
516
+ The title of the series
517
+ </p>
506
518
 
507
519
 
508
520
  </div>
@@ -561,8 +573,9 @@ all concrete series types.</p>
561
573
 
562
574
  </p><div class="docstring">
563
575
  <div class="discussion">
564
-
565
- <p>The index of this series in the charts series.</p>
576
+ <p>
577
+ The index of this series in the chart&#8217;s series.
578
+ </p>
566
579
 
567
580
 
568
581
  </div>
@@ -614,9 +627,10 @@ all concrete series types.</p>
614
627
 
615
628
  </p><div class="docstring">
616
629
  <div class="discussion">
617
-
618
- <p>The order of this series in the charts series. By default the order is
619
- the index of the series.</p>
630
+ <p>
631
+ The order of this series in the chart&#8217;s series. By default the order
632
+ is the index of the series.
633
+ </p>
620
634
 
621
635
 
622
636
  </div>
@@ -709,8 +723,9 @@ the index of the series.</p>
709
723
 
710
724
  </p><div class="docstring">
711
725
  <div class="discussion">
712
-
713
- <p>Serializes the series</p>
726
+ <p>
727
+ Serializes the series
728
+ </p>
714
729
 
715
730
 
716
731
  </div>
@@ -729,8 +744,9 @@ the index of the series.</p>
729
744
 
730
745
 
731
746
  &mdash;
732
- <div class='inline'>
733
- <p>The document builder instance this objects xml will be added to.</p>
747
+ <div class='inline'><p>
748
+ The document builder instance this objects xml will be added to.
749
+ </p>
734
750
  </div>
735
751
 
736
752
  </li>
@@ -788,7 +804,7 @@ the index of the series.</p>
788
804
  </div>
789
805
 
790
806
  <div id="footer">
791
- Generated on Wed Nov 30 08:53:41 2011 by
807
+ Generated on Mon Dec 5 14:21:21 2011 by
792
808
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
793
809
  0.7.3 (ruby-1.8.7).
794
810
  </div>
@@ -96,9 +96,10 @@
96
96
 
97
97
  <h2>Overview</h2><div class="docstring">
98
98
  <div class="discussion">
99
-
100
- <p>A series title is a Title with a slightly different serialization than
101
- chart titles.</p>
99
+ <p>
100
+ A series title is a Title with a slightly different serialization than
101
+ chart titles.
102
+ </p>
102
103
 
103
104
 
104
105
  </div>
@@ -147,8 +148,9 @@ chart titles.</p>
147
148
 
148
149
 
149
150
 
150
- <span class="summary_desc"><div class='inline'>
151
- <p>Serializes the series title.</p>
151
+ <span class="summary_desc"><div class='inline'><p>
152
+ Serializes the series title.
153
+ </p>
152
154
  </div></span>
153
155
 
154
156
  </li>
@@ -188,8 +190,9 @@ chart titles.</p>
188
190
 
189
191
  </p><div class="docstring">
190
192
  <div class="discussion">
191
-
192
- <p>Serializes the series title</p>
193
+ <p>
194
+ Serializes the series title
195
+ </p>
193
196
 
194
197
 
195
198
  </div>
@@ -208,8 +211,9 @@ chart titles.</p>
208
211
 
209
212
 
210
213
  &mdash;
211
- <div class='inline'>
212
- <p>The document builder instance this objects xml will be added to.</p>
214
+ <div class='inline'><p>
215
+ The document builder instance this objects xml will be added to.
216
+ </p>
213
217
  </div>
214
218
 
215
219
  </li>
@@ -277,7 +281,7 @@ chart titles.</p>
277
281
  </div>
278
282
 
279
283
  <div id="footer">
280
- Generated on Wed Nov 30 08:53:44 2011 by
284
+ Generated on Mon Dec 5 14:21:20 2011 by
281
285
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
282
286
  0.7.3 (ruby-1.8.7).
283
287
  </div>
@@ -97,18 +97,20 @@
97
97
 
98
98
  <div class="note notetag">
99
99
  <strong>Note:</strong>
100
- <div class='inline'>
101
- <p>The recommended way to manage styles is with add_style</p>
100
+ <div class='inline'><p>
101
+ The recommended way to manage styles is with add_style
102
+ </p>
102
103
  </div>
103
104
  </div>
104
105
 
105
-
106
- <p>The Styles class manages worksheet styles In addition to creating the
106
+ <p>
107
+ The Styles class manages worksheet styles In addition to creating the
107
108
  require style objects for a valid xlsx package, this class provides the key
108
109
  mechanism for adding styles to your workbook, and safely applying them to
109
110
  the cells of your worksheet. All portions of the stylesheet are implemented
110
111
  here exception colors, which specify legacy and modified pallete colors,
111
- and exLst, whic is used as a future feature data storage area.</p>
112
+ and exLst, whic is used as a future feature data storage area.
113
+ </p>
112
114
 
113
115
 
114
116
  </div>
@@ -149,9 +151,10 @@ and exLst, whic is used as a future feature data storage area.</p>
149
151
 
150
152
 
151
153
 
152
- <span class="summary_desc"><div class='inline'>
153
- <p>The collection of borders used in this workbook Axlsx predefines
154
- THIN_BORDER which can be used to put a border around all of your cells.</p>
154
+ <span class="summary_desc"><div class='inline'><p>
155
+ The collection of borders used in this workbook Axlsx predefines
156
+ THIN_BORDER which can be used to put a border around all of your cells.
157
+ </p>
155
158
  </div></span>
156
159
 
157
160
  </li>
@@ -176,9 +179,10 @@ THIN_BORDER which can be used to put a border around all of your cells.</p>
176
179
 
177
180
 
178
181
 
179
- <span class="summary_desc"><div class='inline'>
180
- <p>The collection of named styles, referencing cellStyleXfs items in the
181
- workbook.</p>
182
+ <span class="summary_desc"><div class='inline'><p>
183
+ The collection of named styles, referencing cellStyleXfs items in the
184
+ workbook.
185
+ </p>
182
186
  </div></span>
183
187
 
184
188
  </li>
@@ -203,9 +207,10 @@ workbook.</p>
203
207
 
204
208
 
205
209
 
206
- <span class="summary_desc"><div class='inline'>
207
- <p>The collection of master formatting records for named cell styles, which
208
- means records defined in cellStyles, in the workbook.</p>
210
+ <span class="summary_desc"><div class='inline'><p>
211
+ The collection of master formatting records for named cell styles, which
212
+ means records defined in cellStyles, in the workbook.
213
+ </p>
209
214
  </div></span>
210
215
 
211
216
  </li>
@@ -230,8 +235,9 @@ means records defined in cellStyles, in the workbook.</p>
230
235
 
231
236
 
232
237
 
233
- <span class="summary_desc"><div class='inline'>
234
- <p>The collection of master formatting records.</p>
238
+ <span class="summary_desc"><div class='inline'><p>
239
+ The collection of master formatting records.
240
+ </p>
235
241
  </div></span>
236
242
 
237
243
  </li>
@@ -256,8 +262,9 @@ means records defined in cellStyles, in the workbook.</p>
256
262
 
257
263
 
258
264
 
259
- <span class="summary_desc"><div class='inline'>
260
- <p>The collection of non-cell formatting records used in the worksheet.</p>
265
+ <span class="summary_desc"><div class='inline'><p>
266
+ The collection of non-cell formatting records used in the worksheet.
267
+ </p>
261
268
  </div></span>
262
269
 
263
270
  </li>
@@ -282,8 +289,9 @@ means records defined in cellStyles, in the workbook.</p>
282
289
 
283
290
 
284
291
 
285
- <span class="summary_desc"><div class='inline'>
286
- <p>The collection of fills used in this workbook.</p>
292
+ <span class="summary_desc"><div class='inline'><p>
293
+ The collection of fills used in this workbook.
294
+ </p>
287
295
  </div></span>
288
296
 
289
297
  </li>
@@ -308,8 +316,9 @@ means records defined in cellStyles, in the workbook.</p>
308
316
 
309
317
 
310
318
 
311
- <span class="summary_desc"><div class='inline'>
312
- <p>The collection of fonts used in this workbook.</p>
319
+ <span class="summary_desc"><div class='inline'><p>
320
+ The collection of fonts used in this workbook.
321
+ </p>
313
322
  </div></span>
314
323
 
315
324
  </li>
@@ -334,8 +343,9 @@ means records defined in cellStyles, in the workbook.</p>
334
343
 
335
344
 
336
345
 
337
- <span class="summary_desc"><div class='inline'>
338
- <p>numFmts for your styles.</p>
346
+ <span class="summary_desc"><div class='inline'><p>
347
+ numFmts for your styles.
348
+ </p>
339
349
  </div></span>
340
350
 
341
351
  </li>
@@ -360,9 +370,10 @@ means records defined in cellStyles, in the workbook.</p>
360
370
 
361
371
 
362
372
 
363
- <span class="summary_desc"><div class='inline'>
364
- <p>The collection of table styles that will be available to the user in the
365
- excel UI.</p>
373
+ <span class="summary_desc"><div class='inline'><p>
374
+ The collection of table styles that will be available to the user in the
375
+ excel UI.
376
+ </p>
366
377
  </div></span>
367
378
 
368
379
  </li>
@@ -397,8 +408,9 @@ excel UI.</p>
397
408
 
398
409
 
399
410
 
400
- <span class="summary_desc"><div class='inline'>
401
- <p>Drastically simplifies style creation and management.</p>
411
+ <span class="summary_desc"><div class='inline'><p>
412
+ Drastically simplifies style creation and management.
413
+ </p>
402
414
  </div></span>
403
415
 
404
416
  </li>
@@ -422,9 +434,10 @@ excel UI.</p>
422
434
 
423
435
 
424
436
 
425
- <span class="summary_desc"><div class='inline'>
426
- <p>Creates a new Styles object and prepopulates it with the requires objects
427
- to generate a valid package style part.</p>
437
+ <span class="summary_desc"><div class='inline'><p>
438
+ Creates a new Styles object and prepopulates it with the requires objects
439
+ to generate a valid package style part.
440
+ </p>
428
441
  </div></span>
429
442
 
430
443
  </li>
@@ -446,8 +459,9 @@ to generate a valid package style part.</p>
446
459
 
447
460
 
448
461
 
449
- <span class="summary_desc"><div class='inline'>
450
- <p>Serializes the styles document.</p>
462
+ <span class="summary_desc"><div class='inline'><p>
463
+ Serializes the styles document.
464
+ </p>
451
465
  </div></span>
452
466
 
453
467
  </li>
@@ -468,9 +482,10 @@ to generate a valid package style part.</p>
468
482
 
469
483
  </p><div class="docstring">
470
484
  <div class="discussion">
471
-
472
- <p>Creates a new Styles object and prepopulates it with the requires objects
473
- to generate a valid package style part.</p>
485
+ <p>
486
+ Creates a new Styles object and prepopulates it with the requires objects
487
+ to generate a valid package style part.
488
+ </p>
474
489
 
475
490
 
476
491
  </div>
@@ -520,14 +535,16 @@ to generate a valid package style part.</p>
520
535
 
521
536
  <div class="note notetag">
522
537
  <strong>Note:</strong>
523
- <div class='inline'>
524
- <p>The recommended way to manage styles is with add_style</p>
538
+ <div class='inline'><p>
539
+ The recommended way to manage styles is with add_style
540
+ </p>
525
541
  </div>
526
542
  </div>
527
543
 
528
-
529
- <p>The collection of borders used in this workbook Axlsx predefines
530
- THIN_BORDER which can be used to put a border around all of your cells.</p>
544
+ <p>
545
+ The collection of borders used in this workbook Axlsx predefines
546
+ THIN_BORDER which can be used to put a border around all of your cells.
547
+ </p>
531
548
 
532
549
 
533
550
  </div>
@@ -592,14 +609,16 @@ THIN_BORDER which can be used to put a border around all of your cells.</p>
592
609
 
593
610
  <div class="note notetag">
594
611
  <strong>Note:</strong>
595
- <div class='inline'>
596
- <p>The recommended way to manage styles is with add_style</p>
612
+ <div class='inline'><p>
613
+ The recommended way to manage styles is with add_style
614
+ </p>
597
615
  </div>
598
616
  </div>
599
617
 
600
-
601
- <p>The collection of named styles, referencing cellStyleXfs items in the
602
- workbook.</p>
618
+ <p>
619
+ The collection of named styles, referencing cellStyleXfs items in the
620
+ workbook.
621
+ </p>
603
622
 
604
623
 
605
624
  </div>
@@ -664,14 +683,16 @@ workbook.</p>
664
683
 
665
684
  <div class="note notetag">
666
685
  <strong>Note:</strong>
667
- <div class='inline'>
668
- <p>The recommended way to manage styles is with add_style</p>
686
+ <div class='inline'><p>
687
+ The recommended way to manage styles is with add_style
688
+ </p>
669
689
  </div>
670
690
  </div>
671
691
 
672
-
673
- <p>The collection of master formatting records for named cell styles, which
674
- means records defined in cellStyles, in the workbook</p>
692
+ <p>
693
+ The collection of master formatting records for named cell styles, which
694
+ means records defined in cellStyles, in the workbook
695
+ </p>
675
696
 
676
697
 
677
698
  </div>
@@ -736,14 +757,16 @@ means records defined in cellStyles, in the workbook</p>
736
757
 
737
758
  <div class="note notetag">
738
759
  <strong>Note:</strong>
739
- <div class='inline'>
740
- <p>The recommended way to manage styles is with add_style</p>
760
+ <div class='inline'><p>
761
+ The recommended way to manage styles is with add_style
762
+ </p>
741
763
  </div>
742
764
  </div>
743
765
 
744
-
745
- <p>The collection of master formatting records. This is the list that you will
746
- actually use in styling a workbook.</p>
766
+ <p>
767
+ The collection of master formatting records. This is the list that you will
768
+ actually use in styling a workbook.
769
+ </p>
747
770
 
748
771
 
749
772
  </div>
@@ -808,13 +831,15 @@ actually use in styling a workbook.</p>
808
831
 
809
832
  <div class="note notetag">
810
833
  <strong>Note:</strong>
811
- <div class='inline'>
812
- <p>The recommended way to manage styles is with add_style</p>
834
+ <div class='inline'><p>
835
+ The recommended way to manage styles is with add_style
836
+ </p>
813
837
  </div>
814
838
  </div>
815
839
 
816
-
817
- <p>The collection of non-cell formatting records used in the worksheet.</p>
840
+ <p>
841
+ The collection of non-cell formatting records used in the worksheet.
842
+ </p>
818
843
 
819
844
 
820
845
  </div>
@@ -879,13 +904,15 @@ actually use in styling a workbook.</p>
879
904
 
880
905
  <div class="note notetag">
881
906
  <strong>Note:</strong>
882
- <div class='inline'>
883
- <p>The recommended way to manage styles is with add_style</p>
907
+ <div class='inline'><p>
908
+ The recommended way to manage styles is with add_style
909
+ </p>
884
910
  </div>
885
911
  </div>
886
912
 
887
-
888
- <p>The collection of fills used in this workbook</p>
913
+ <p>
914
+ The collection of fills used in this workbook
915
+ </p>
889
916
 
890
917
 
891
918
  </div>
@@ -950,13 +977,15 @@ actually use in styling a workbook.</p>
950
977
 
951
978
  <div class="note notetag">
952
979
  <strong>Note:</strong>
953
- <div class='inline'>
954
- <p>The recommended way to manage styles is with add_style</p>
980
+ <div class='inline'><p>
981
+ The recommended way to manage styles is with add_style
982
+ </p>
955
983
  </div>
956
984
  </div>
957
985
 
958
-
959
- <p>The collection of fonts used in this workbook</p>
986
+ <p>
987
+ The collection of fonts used in this workbook
988
+ </p>
960
989
 
961
990
 
962
991
  </div>
@@ -1021,48 +1050,50 @@ actually use in styling a workbook.</p>
1021
1050
 
1022
1051
  <div class="note notetag">
1023
1052
  <strong>Note:</strong>
1024
- <div class='inline'>
1025
- <p>The recommended way to manage styles is with add_style</p>
1053
+ <div class='inline'><p>
1054
+ The recommended way to manage styles is with add_style
1055
+ </p>
1026
1056
  </div>
1027
1057
  </div>
1028
1058
 
1029
-
1030
- <p>numFmts for your styles.</p>
1031
-
1032
- <pre class="code"><span class='The constant id'>The</span> <span class='default identifier id'>default</span> <span class='styles identifier id'>styles</span><span class='comma token'>,</span> <span class='which identifier id'>which</span> <span class='change identifier id'>change</span> <span class='based identifier id'>based</span> <span class='on identifier id'>on</span> <span class='the identifier id'>the</span> <span class='system identifier id'>system</span> <span class='local identifier id'>local</span><span class='comma token'>,</span> <span class='are identifier id'>are</span> <span class='as identifier id'>as</span> <span class='follows identifier id'>follows</span><span class='dot token'>.</span>
1033
- <span class='id identifier id'>id</span> <span class='formatCode identifier id'>formatCode</span>
1034
- <span class='integer val'>0</span> <span class='General constant id'>General</span>
1035
- <span class='integer val'>1</span> <span class='integer val'>0</span>
1036
- <span class='integer val'>2</span> <span class='integer val'>0</span><span class='integer val'>.00</span>
1037
- <span class='integer val'>3</span> <span class='comment val'>#,##0</span>
1038
- <span class='integer val'>4</span> <span class='comment val'>#,##0.00</span>
1039
- <span class='integer val'>9</span> <span class='integer val'>0</span><span class='mod op'>%</span>
1040
- <span class='integer val'>10</span> <span class='integer val'>0</span><span class='integer val'>.00</span><span class='mod op'>%</span>
1041
- <span class='integer val'>11</span> <span class='integer val'>0</span><span class='float val'>.00E+00</span>
1042
- <span class='integer val'>12</span> <span class='comment val'># ?/?</span>
1043
- <span class='integer val'>13</span> <span class='comment val'># ??/??</span>
1044
- <span class='integer val'>14</span> <span class='mm identifier id'>mm</span><span class='minus op'>-</span><span class='dd identifier id'>dd</span><span class='minus op'>-</span><span class='yy identifier id'>yy</span>
1045
- <span class='integer val'>15</span> <span class='d identifier id'>d</span><span class='minus op'>-</span><span class='mmm identifier id'>mmm</span><span class='minus op'>-</span><span class='yy identifier id'>yy</span>
1046
- <span class='integer val'>16</span> <span class='d identifier id'>d</span><span class='minus op'>-</span><span class='mmm identifier id'>mmm</span>
1047
- <span class='integer val'>17</span> <span class='mmm identifier id'>mmm</span><span class='minus op'>-</span><span class='yy identifier id'>yy</span>
1048
- <span class='integer val'>18</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span> <span class='AM constant id'>AM</span><span class='div op'>/</span><span class='PM constant id'>PM</span>
1049
- <span class='integer val'>19</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span><span class='symbol val'>:ss</span> <span class='AM constant id'>AM</span><span class='div op'>/</span><span class='PM constant id'>PM</span>
1050
- <span class='integer val'>20</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span>
1051
- <span class='integer val'>21</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span><span class='symbol val'>:ss</span>
1052
- <span class='integer val'>22</span> <span class='m identifier id'>m</span><span class='div op'>/</span><span class='d identifier id'>d</span><span class='div op'>/</span><span class='yy identifier id'>yy</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span>
1053
- <span class='integer val'>37</span> <span class='comment val'>#,##0 ;(#,##0)</span>
1054
- <span class='integer val'>38</span> <span class='comment val'>#,##0 ;[Red](#,##0)</span>
1055
- <span class='integer val'>39</span> <span class='comment val'>#,##0.00;(#,##0.00)</span>
1056
- <span class='integer val'>40</span> <span class='comment val'>#,##0.00;[Red](#,##0.00)</span>
1057
- <span class='integer val'>45</span> <span class='mm identifier id'>mm</span><span class='symbol val'>:ss</span>
1058
- <span class='integer val'>46</span> <span class='lbrack token'>[</span><span class='h identifier id'>h</span><span class='rbrack token'>]</span><span class='symbol val'>:mm</span><span class='symbol val'>:ss</span>
1059
- <span class='integer val'>47</span> <span class='mmss identifier id'>mmss</span><span class='integer val'>.0</span>
1060
- <span class='integer val'>48</span> <span class='comment val'>##0.0E+0</span>
1061
- <span class='integer val'>49</span> @
1062
- <span class='Axlsx constant id'>Axlsx</span> <span class='also identifier id'>also</span> <span class='defines identifier id'>defines</span> <span class='the identifier id'>the</span> <span class='following identifier id'>following</span> <span class='constants identifier id'>constants</span> <span class='which identifier id'>which</span> <span class='you identifier id'>you</span> <span class='can identifier id'>can</span> <span class='use identifier id'>use</span> <span class='in in kw'>in</span> <span class='add_style identifier id'>add_style</span><span class='dot token'>.</span>
1063
- <span class='NUM_FMT_PERCENT constant id'>NUM_FMT_PERCENT</span> <span class='formats identifier id'>formats</span> <span class='to identifier id'>to</span> <span class='string val'>&quot;0%&quot;</span>
1064
- <span class='NUM_FMT_YYYYMMDD constant id'>NUM_FMT_YYYYMMDD</span> <span class='formats identifier id'>formats</span> <span class='to identifier id'>to</span> <span class='string val'>&quot;yyyy/mm/dd&quot;</span>
1065
- <span class='NUM_FMT_YYYYMMDDHHMMSS constant id'>NUM_FMT_YYYYMMDDHHMMSS</span> <span class='formats identifier id'>formats</span> <span class='to identifier id'>to</span> <span class='string val'>&quot;yyyy/mm/dd hh:mm:ss&quot;</span>
1059
+ <p>
1060
+ numFmts for your styles.
1061
+ </p>
1062
+ <pre class="code">
1063
+ <span class='The constant id'>The</span> <span class='default identifier id'>default</span> <span class='styles identifier id'>styles</span><span class='comma token'>,</span> <span class='which identifier id'>which</span> <span class='change identifier id'>change</span> <span class='based identifier id'>based</span> <span class='on identifier id'>on</span> <span class='the identifier id'>the</span> <span class='system identifier id'>system</span> <span class='local identifier id'>local</span><span class='comma token'>,</span> <span class='are identifier id'>are</span> <span class='as identifier id'>as</span> <span class='follows identifier id'>follows</span><span class='dot token'>.</span>
1064
+ <span class='id identifier id'>id</span> <span class='formatCode identifier id'>formatCode</span>
1065
+ <span class='integer val'>0</span> <span class='General constant id'>General</span>
1066
+ <span class='integer val'>1</span> <span class='integer val'>0</span>
1067
+ <span class='integer val'>2</span> <span class='integer val'>0</span><span class='integer val'>.00</span>
1068
+ <span class='integer val'>3</span> <span class='comment val'>#,##0</span>
1069
+ <span class='integer val'>4</span> <span class='comment val'>#,##0.00</span>
1070
+ <span class='integer val'>9</span> <span class='integer val'>0</span><span class='mod op'>%</span>
1071
+ <span class='integer val'>10</span> <span class='integer val'>0</span><span class='integer val'>.00</span><span class='mod op'>%</span>
1072
+ <span class='integer val'>11</span> <span class='integer val'>0</span><span class='float val'>.00E+00</span>
1073
+ <span class='integer val'>12</span> <span class='comment val'># ?/?</span>
1074
+ <span class='integer val'>13</span> <span class='comment val'># ??/??</span>
1075
+ <span class='integer val'>14</span> <span class='mm identifier id'>mm</span><span class='minus op'>-</span><span class='dd identifier id'>dd</span><span class='minus op'>-</span><span class='yy identifier id'>yy</span>
1076
+ <span class='integer val'>15</span> <span class='d identifier id'>d</span><span class='minus op'>-</span><span class='mmm identifier id'>mmm</span><span class='minus op'>-</span><span class='yy identifier id'>yy</span>
1077
+ <span class='integer val'>16</span> <span class='d identifier id'>d</span><span class='minus op'>-</span><span class='mmm identifier id'>mmm</span>
1078
+ <span class='integer val'>17</span> <span class='mmm identifier id'>mmm</span><span class='minus op'>-</span><span class='yy identifier id'>yy</span>
1079
+ <span class='integer val'>18</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span> <span class='AM constant id'>AM</span><span class='div op'>/</span><span class='PM constant id'>PM</span>
1080
+ <span class='integer val'>19</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span><span class='symbol val'>:ss</span> <span class='AM constant id'>AM</span><span class='div op'>/</span><span class='PM constant id'>PM</span>
1081
+ <span class='integer val'>20</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span>
1082
+ <span class='integer val'>21</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span><span class='symbol val'>:ss</span>
1083
+ <span class='integer val'>22</span> <span class='m identifier id'>m</span><span class='div op'>/</span><span class='d identifier id'>d</span><span class='div op'>/</span><span class='yy identifier id'>yy</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span>
1084
+ <span class='integer val'>37</span> <span class='comment val'>#,##0 ;(#,##0)</span>
1085
+ <span class='integer val'>38</span> <span class='comment val'>#,##0 ;[Red](#,##0)</span>
1086
+ <span class='integer val'>39</span> <span class='comment val'>#,##0.00;(#,##0.00)</span>
1087
+ <span class='integer val'>40</span> <span class='comment val'>#,##0.00;[Red](#,##0.00)</span>
1088
+ <span class='integer val'>45</span> <span class='mm identifier id'>mm</span><span class='symbol val'>:ss</span>
1089
+ <span class='integer val'>46</span> <span class='lbrack token'>[</span><span class='h identifier id'>h</span><span class='rbrack token'>]</span><span class='symbol val'>:mm</span><span class='symbol val'>:ss</span>
1090
+ <span class='integer val'>47</span> <span class='mmss identifier id'>mmss</span><span class='integer val'>.0</span>
1091
+ <span class='integer val'>48</span> <span class='comment val'>##0.0E+0</span>
1092
+ <span class='integer val'>49</span> @
1093
+ <span class='Axlsx constant id'>Axlsx</span> <span class='also identifier id'>also</span> <span class='defines identifier id'>defines</span> <span class='the identifier id'>the</span> <span class='following identifier id'>following</span> <span class='constants identifier id'>constants</span> <span class='which identifier id'>which</span> <span class='you identifier id'>you</span> <span class='can identifier id'>can</span> <span class='use identifier id'>use</span> <span class='in in kw'>in</span> <span class='add_style identifier id'>add_style</span><span class='dot token'>.</span>
1094
+ <span class='NUM_FMT_PERCENT constant id'>NUM_FMT_PERCENT</span> <span class='formats identifier id'>formats</span> <span class='to identifier id'>to</span> <span class='string val'>&quot;0%&quot;</span>
1095
+ <span class='NUM_FMT_YYYYMMDD constant id'>NUM_FMT_YYYYMMDD</span> <span class='formats identifier id'>formats</span> <span class='to identifier id'>to</span> <span class='string val'>&quot;yyyy/mm/dd&quot;</span>
1096
+ <span class='NUM_FMT_YYYYMMDDHHMMSS constant id'>NUM_FMT_YYYYMMDDHHMMSS</span> <span class='formats identifier id'>formats</span> <span class='to identifier id'>to</span> <span class='string val'>&quot;yyyy/mm/dd hh:mm:ss&quot;</span>
1066
1097
  </pre>
1067
1098
 
1068
1099
 
@@ -1130,14 +1161,16 @@ actually use in styling a workbook.</p>
1130
1161
 
1131
1162
  <div class="note notetag">
1132
1163
  <strong>Note:</strong>
1133
- <div class='inline'>
1134
- <p>The recommended way to manage styles is with add_style</p>
1164
+ <div class='inline'><p>
1165
+ The recommended way to manage styles is with add_style
1166
+ </p>
1135
1167
  </div>
1136
1168
  </div>
1137
1169
 
1138
-
1139
- <p>The collection of table styles that will be available to the user in the
1140
- excel UI</p>
1170
+ <p>
1171
+ The collection of table styles that will be available to the user in the
1172
+ excel UI
1173
+ </p>
1141
1174
 
1142
1175
 
1143
1176
  </div>
@@ -1203,8 +1236,9 @@ excel UI</p>
1203
1236
 
1204
1237
  </p><div class="docstring">
1205
1238
  <div class="discussion">
1206
-
1207
- <p>Drastically simplifies style creation and management.</p>
1239
+ <p>
1240
+ Drastically simplifies style creation and management.
1241
+ </p>
1208
1242
 
1209
1243
 
1210
1244
  </div>
@@ -1214,8 +1248,9 @@ excel UI</p>
1214
1248
  <div class="examples">
1215
1249
  <h3>Examples:</h3>
1216
1250
 
1217
- <h4><div class='inline'>
1218
- <p>You Got Style</p>
1251
+ <h4><div class='inline'><p>
1252
+ You Got Style
1253
+ </p>
1219
1254
  </div></h4>
1220
1255
  <pre class="example code"><span class='require identifier id'>require</span> <span class='string val'>&quot;rubygems&quot;</span> <span class='comment val'># if that is your preferred way to manage gems!</span>
1221
1256
  <span class='require identifier id'>require</span> <span class='string val'>&quot;axlsx&quot;</span>
@@ -1233,8 +1268,9 @@ excel UI</p>
1233
1268
  <span class='p identifier id'>p</span><span class='dot token'>.</span><span class='serialize identifier id'>serialize</span><span class='lparen token'>(</span><span class='f identifier id'>f</span><span class='rparen token'>)</span>
1234
1269
  </pre>
1235
1270
 
1236
- <h4><div class='inline'>
1237
- <p>Styling specifically</p>
1271
+ <h4><div class='inline'><p>
1272
+ Styling specifically
1273
+ </p>
1238
1274
  </div></h4>
1239
1275
  <pre class="example code"><span class='comment val'># an example of applying specific styles to specific cells</span>
1240
1276
  <span class='require identifier id'>require</span> <span class='string val'>&quot;rubygems&quot;</span> <span class='comment val'># if that is your preferred way to manage gems!</span>
@@ -1286,8 +1322,9 @@ excel UI</p>
1286
1322
 
1287
1323
 
1288
1324
  &mdash;
1289
- <div class='inline'>
1290
- <p>a customizable set of options</p>
1325
+ <div class='inline'><p>
1326
+ a customizable set of options
1327
+ </p>
1291
1328
  </div>
1292
1329
 
1293
1330
  </li>
@@ -1306,8 +1343,9 @@ excel UI</p>
1306
1343
  <span class="default">
1307
1344
 
1308
1345
  </span>
1309
- &mdash; <div class='inline'>
1310
- <p>The text color</p>
1346
+ &mdash; <div class='inline'><p>
1347
+ The text color
1348
+ </p>
1311
1349
  </div>
1312
1350
  </li>
1313
1351
 
@@ -1317,8 +1355,9 @@ excel UI</p>
1317
1355
  <span class="default">
1318
1356
 
1319
1357
  </span>
1320
- &mdash; <div class='inline'>
1321
- <p>The text size</p>
1358
+ &mdash; <div class='inline'><p>
1359
+ The text size
1360
+ </p>
1322
1361
  </div>
1323
1362
  </li>
1324
1363
 
@@ -1328,8 +1367,9 @@ excel UI</p>
1328
1367
  <span class="default">
1329
1368
 
1330
1369
  </span>
1331
- &mdash; <div class='inline'>
1332
- <p>Indicates if the text should be bold</p>
1370
+ &mdash; <div class='inline'><p>
1371
+ Indicates if the text should be bold
1372
+ </p>
1333
1373
  </div>
1334
1374
  </li>
1335
1375
 
@@ -1339,8 +1379,9 @@ excel UI</p>
1339
1379
  <span class="default">
1340
1380
 
1341
1381
  </span>
1342
- &mdash; <div class='inline'>
1343
- <p>Indicates if the text should be italicised</p>
1382
+ &mdash; <div class='inline'><p>
1383
+ Indicates if the text should be italicised
1384
+ </p>
1344
1385
  </div>
1345
1386
  </li>
1346
1387
 
@@ -1350,8 +1391,9 @@ excel UI</p>
1350
1391
  <span class="default">
1351
1392
 
1352
1393
  </span>
1353
- &mdash; <div class='inline'>
1354
- <p>Indicates if the text should be rendered with a strikethrough</p>
1394
+ &mdash; <div class='inline'><p>
1395
+ Indicates if the text should be rendered with a strikethrough
1396
+ </p>
1355
1397
  </div>
1356
1398
  </li>
1357
1399
 
@@ -1361,8 +1403,9 @@ excel UI</p>
1361
1403
  <span class="default">
1362
1404
 
1363
1405
  </span>
1364
- &mdash; <div class='inline'>
1365
- <p>Indicates if the text should be rendered with a shadow</p>
1406
+ &mdash; <div class='inline'><p>
1407
+ Indicates if the text should be rendered with a shadow
1408
+ </p>
1366
1409
  </div>
1367
1410
  </li>
1368
1411
 
@@ -1372,8 +1415,9 @@ excel UI</p>
1372
1415
  <span class="default">
1373
1416
 
1374
1417
  </span>
1375
- &mdash; <div class='inline'>
1376
- <p>The character set to use.</p>
1418
+ &mdash; <div class='inline'><p>
1419
+ The character set to use.
1420
+ </p>
1377
1421
  </div>
1378
1422
  </li>
1379
1423
 
@@ -1383,8 +1427,9 @@ excel UI</p>
1383
1427
  <span class="default">
1384
1428
 
1385
1429
  </span>
1386
- &mdash; <div class='inline'>
1387
- <p>The font family to use.</p>
1430
+ &mdash; <div class='inline'><p>
1431
+ The font family to use.
1432
+ </p>
1388
1433
  </div>
1389
1434
  </li>
1390
1435
 
@@ -1394,8 +1439,9 @@ excel UI</p>
1394
1439
  <span class="default">
1395
1440
 
1396
1441
  </span>
1397
- &mdash; <div class='inline'>
1398
- <p>The name of the font to use</p>
1442
+ &mdash; <div class='inline'><p>
1443
+ The name of the font to use
1444
+ </p>
1399
1445
  </div>
1400
1446
  </li>
1401
1447
 
@@ -1405,8 +1451,9 @@ excel UI</p>
1405
1451
  <span class="default">
1406
1452
 
1407
1453
  </span>
1408
- &mdash; <div class='inline'>
1409
- <p>The number format to apply</p>
1454
+ &mdash; <div class='inline'><p>
1455
+ The number format to apply
1456
+ </p>
1410
1457
  </div>
1411
1458
  </li>
1412
1459
 
@@ -1416,8 +1463,9 @@ excel UI</p>
1416
1463
  <span class="default">
1417
1464
 
1418
1465
  </span>
1419
- &mdash; <div class='inline'>
1420
- <p>The formatting to apply. If this is specified, num_fmt is ignored.</p>
1466
+ &mdash; <div class='inline'><p>
1467
+ The formatting to apply. If this is specified, num_fmt is ignored.
1468
+ </p>
1421
1469
  </div>
1422
1470
  </li>
1423
1471
 
@@ -1427,8 +1475,9 @@ excel UI</p>
1427
1475
  <span class="default">
1428
1476
 
1429
1477
  </span>
1430
- &mdash; <div class='inline'>
1431
- <p>The border style to use.</p>
1478
+ &mdash; <div class='inline'><p>
1479
+ The border style to use.
1480
+ </p>
1432
1481
  </div>
1433
1482
  </li>
1434
1483
 
@@ -1438,8 +1487,9 @@ excel UI</p>
1438
1487
  <span class="default">
1439
1488
 
1440
1489
  </span>
1441
- &mdash; <div class='inline'>
1442
- <p>The background color to apply to the cell</p>
1490
+ &mdash; <div class='inline'><p>
1491
+ The background color to apply to the cell
1492
+ </p>
1443
1493
  </div>
1444
1494
  </li>
1445
1495
 
@@ -1449,8 +1499,9 @@ excel UI</p>
1449
1499
  <span class="default">
1450
1500
 
1451
1501
  </span>
1452
- &mdash; <div class='inline'>
1453
- <p>Indicates if the cell should be hidden</p>
1502
+ &mdash; <div class='inline'><p>
1503
+ Indicates if the cell should be hidden
1504
+ </p>
1454
1505
  </div>
1455
1506
  </li>
1456
1507
 
@@ -1460,8 +1511,9 @@ excel UI</p>
1460
1511
  <span class="default">
1461
1512
 
1462
1513
  </span>
1463
- &mdash; <div class='inline'>
1464
- <p>Indicates if the cell should be locked</p>
1514
+ &mdash; <div class='inline'><p>
1515
+ Indicates if the cell should be locked
1516
+ </p>
1465
1517
  </div>
1466
1518
  </li>
1467
1519
 
@@ -1471,8 +1523,9 @@ excel UI</p>
1471
1523
  <span class="default">
1472
1524
 
1473
1525
  </span>
1474
- &mdash; <div class='inline'>
1475
- <p>A hash defining any of the attributes used in CellAlignment</p>
1526
+ &mdash; <div class='inline'><p>
1527
+ A hash defining any of the attributes used in CellAlignment
1528
+ </p>
1476
1529
  </div>
1477
1530
  </li>
1478
1531
 
@@ -1628,8 +1681,9 @@ excel UI</p>
1628
1681
 
1629
1682
  </p><div class="docstring">
1630
1683
  <div class="discussion">
1631
-
1632
- <p>Serializes the styles document</p>
1684
+ <p>
1685
+ Serializes the styles document
1686
+ </p>
1633
1687
 
1634
1688
 
1635
1689
  </div>
@@ -1691,7 +1745,7 @@ excel UI</p>
1691
1745
  </div>
1692
1746
 
1693
1747
  <div id="footer">
1694
- Generated on Wed Nov 30 08:53:46 2011 by
1748
+ Generated on Mon Dec 5 14:21:15 2011 by
1695
1749
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1696
1750
  0.7.3 (ruby-1.8.7).
1697
1751
  </div>