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
@@ -99,14 +99,16 @@
99
99
 
100
100
  <div class="note notetag">
101
101
  <strong>Note:</strong>
102
- <div class='inline'>
103
- <p>Table are not supported in this version and only the defaults required for
104
- a valid workbook are created.</p>
102
+ <div class='inline'><p>
103
+ Table are not supported in this version and only the defaults required for
104
+ a valid workbook are created.
105
+ </p>
105
106
  </div>
106
107
  </div>
107
108
 
108
-
109
- <p>A single table style definition and is a collection for tableStyleElements</p>
109
+ <p>
110
+ A single table style definition and is a collection for tableStyleElements
111
+ </p>
110
112
 
111
113
 
112
114
  </div>
@@ -142,8 +144,9 @@ a valid workbook are created.</p>
142
144
 
143
145
 
144
146
 
145
- <span class="summary_desc"><div class='inline'>
146
- <p>The name of this table style.</p>
147
+ <span class="summary_desc"><div class='inline'><p>
148
+ The name of this table style.
149
+ </p>
147
150
  </div></span>
148
151
 
149
152
  </li>
@@ -168,8 +171,9 @@ a valid workbook are created.</p>
168
171
 
169
172
 
170
173
 
171
- <span class="summary_desc"><div class='inline'>
172
- <p>indicates if this style should be applied to pivot tables.</p>
174
+ <span class="summary_desc"><div class='inline'><p>
175
+ indicates if this style should be applied to pivot tables.
176
+ </p>
173
177
  </div></span>
174
178
 
175
179
  </li>
@@ -194,8 +198,9 @@ a valid workbook are created.</p>
194
198
 
195
199
 
196
200
 
197
- <span class="summary_desc"><div class='inline'>
198
- <p>indicates if this style should be applied to tables.</p>
201
+ <span class="summary_desc"><div class='inline'><p>
202
+ indicates if this style should be applied to tables.
203
+ </p>
199
204
  </div></span>
200
205
 
201
206
  </li>
@@ -240,8 +245,9 @@ a valid workbook are created.</p>
240
245
 
241
246
 
242
247
 
243
- <span class="summary_desc"><div class='inline'>
244
- <p>creates a new TableStyle object.</p>
248
+ <span class="summary_desc"><div class='inline'><p>
249
+ creates a new TableStyle object.
250
+ </p>
245
251
  </div></span>
246
252
 
247
253
  </li>
@@ -263,8 +269,9 @@ a valid workbook are created.</p>
263
269
 
264
270
 
265
271
 
266
- <span class="summary_desc"><div class='inline'>
267
- <p>Serializes the table style.</p>
272
+ <span class="summary_desc"><div class='inline'><p>
273
+ Serializes the table style.
274
+ </p>
268
275
  </div></span>
269
276
 
270
277
  </li>
@@ -290,8 +297,9 @@ a valid workbook are created.</p>
290
297
 
291
298
  </p><div class="docstring">
292
299
  <div class="discussion">
293
-
294
- <p>creates a new TableStyle object</p>
300
+ <p>
301
+ creates a new TableStyle object
302
+ </p>
295
303
 
296
304
 
297
305
  </div>
@@ -323,8 +331,9 @@ a valid workbook are created.</p>
323
331
 
324
332
 
325
333
  &mdash;
326
- <div class='inline'>
327
- <p>a customizable set of options</p>
334
+ <div class='inline'><p>
335
+ a customizable set of options
336
+ </p>
328
337
  </div>
329
338
 
330
339
  </li>
@@ -371,8 +380,9 @@ a valid workbook are created.</p>
371
380
 
372
381
 
373
382
  &mdash;
374
- <div class='inline'>
375
- <p>if name option is not provided.</p>
383
+ <div class='inline'><p>
384
+ if name option is not provided.
385
+ </p>
376
386
  </div>
377
387
 
378
388
  </li>
@@ -436,8 +446,9 @@ a valid workbook are created.</p>
436
446
 
437
447
  </p><div class="docstring">
438
448
  <div class="discussion">
439
-
440
- <p>The name of this table style</p>
449
+ <p>
450
+ The name of this table style
451
+ </p>
441
452
 
442
453
 
443
454
  </div>
@@ -492,8 +503,9 @@ a valid workbook are created.</p>
492
503
 
493
504
  </p><div class="docstring">
494
505
  <div class="discussion">
495
-
496
- <p>indicates if this style should be applied to pivot tables</p>
506
+ <p>
507
+ indicates if this style should be applied to pivot tables
508
+ </p>
497
509
 
498
510
 
499
511
  </div>
@@ -548,8 +560,9 @@ a valid workbook are created.</p>
548
560
 
549
561
  </p><div class="docstring">
550
562
  <div class="discussion">
551
-
552
- <p>indicates if this style should be applied to tables</p>
563
+ <p>
564
+ indicates if this style should be applied to tables
565
+ </p>
553
566
 
554
567
 
555
568
  </div>
@@ -608,8 +621,9 @@ a valid workbook are created.</p>
608
621
 
609
622
  </p><div class="docstring">
610
623
  <div class="discussion">
611
-
612
- <p>Serializes the table style</p>
624
+ <p>
625
+ Serializes the table style
626
+ </p>
613
627
 
614
628
 
615
629
  </div>
@@ -628,8 +642,9 @@ a valid workbook are created.</p>
628
642
 
629
643
 
630
644
  &mdash;
631
- <div class='inline'>
632
- <p>The document builder instance this objects xml will be added to.</p>
645
+ <div class='inline'><p>
646
+ The document builder instance this objects xml will be added to.
647
+ </p>
633
648
  </div>
634
649
 
635
650
  </li>
@@ -681,7 +696,7 @@ a valid workbook are created.</p>
681
696
  </div>
682
697
 
683
698
  <div id="footer">
684
- Generated on Wed Nov 30 08:53:35 2011 by
699
+ Generated on Mon Dec 5 14:21:15 2011 by
685
700
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
686
701
  0.7.3 (ruby-1.8.7).
687
702
  </div>
@@ -97,14 +97,16 @@
97
97
 
98
98
  <div class="note notetag">
99
99
  <strong>Note:</strong>
100
- <div class='inline'>
101
- <p>tables and table styles are not supported in this version. This class
102
- exists in preparation for that support.</p>
100
+ <div class='inline'><p>
101
+ tables and table styles are not supported in this version. This class
102
+ exists in preparation for that support.
103
+ </p>
103
104
  </div>
104
105
  </div>
105
106
 
106
-
107
- <p>an element of style that belongs to a table style.</p>
107
+ <p>
108
+ an element of style that belongs to a table style.
109
+ </p>
108
110
 
109
111
 
110
112
  </div>
@@ -136,8 +138,9 @@ exists in preparation for that support.</p>
136
138
 
137
139
 
138
140
 
139
- <span class="summary_desc"><div class='inline'>
140
- <p>The dxfId this style element points to.</p>
141
+ <span class="summary_desc"><div class='inline'><p>
142
+ The dxfId this style element points to.
143
+ </p>
141
144
  </div></span>
142
145
 
143
146
  </li>
@@ -162,9 +165,10 @@ exists in preparation for that support.</p>
162
165
 
163
166
 
164
167
 
165
- <span class="summary_desc"><div class='inline'>
166
- <p>Number of rows or columns used in striping when the type is firstRowStripe,
167
- secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
168
+ <span class="summary_desc"><div class='inline'><p>
169
+ Number of rows or columns used in striping when the type is firstRowStripe,
170
+ secondRowStripe, firstColumnStripe, or secondColumnStripe.
171
+ </p>
168
172
  </div></span>
169
173
 
170
174
  </li>
@@ -189,8 +193,9 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
189
193
 
190
194
 
191
195
 
192
- <span class="summary_desc"><div class='inline'>
193
- <p>The type of style element.</p>
196
+ <span class="summary_desc"><div class='inline'><p>
197
+ The type of style element.
198
+ </p>
194
199
  </div></span>
195
200
 
196
201
  </li>
@@ -227,8 +232,9 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
227
232
 
228
233
 
229
234
 
230
- <span class="summary_desc"><div class='inline'>
231
- <p>creates a new TableStyleElement object.</p>
235
+ <span class="summary_desc"><div class='inline'><p>
236
+ creates a new TableStyleElement object.
237
+ </p>
232
238
  </div></span>
233
239
 
234
240
  </li>
@@ -250,8 +256,9 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
250
256
 
251
257
 
252
258
 
253
- <span class="summary_desc"><div class='inline'>
254
- <p>Serializes the table style element.</p>
259
+ <span class="summary_desc"><div class='inline'><p>
260
+ Serializes the table style element.
261
+ </p>
255
262
  </div></span>
256
263
 
257
264
  </li>
@@ -272,8 +279,9 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
272
279
 
273
280
  </p><div class="docstring">
274
281
  <div class="discussion">
275
-
276
- <p>creates a new TableStyleElement object</p>
282
+ <p>
283
+ creates a new TableStyleElement object
284
+ </p>
277
285
 
278
286
 
279
287
  </div>
@@ -294,8 +302,9 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
294
302
 
295
303
 
296
304
  &mdash;
297
- <div class='inline'>
298
- <p>a customizable set of options</p>
305
+ <div class='inline'><p>
306
+ a customizable set of options
307
+ </p>
299
308
  </div>
300
309
 
301
310
  </li>
@@ -382,8 +391,9 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
382
391
 
383
392
  </p><div class="docstring">
384
393
  <div class="discussion">
385
-
386
- <p>The dxfId this style element points to</p>
394
+ <p>
395
+ The dxfId this style element points to
396
+ </p>
387
397
 
388
398
 
389
399
  </div>
@@ -438,9 +448,10 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
438
448
 
439
449
  </p><div class="docstring">
440
450
  <div class="discussion">
441
-
442
- <p>Number of rows or columns used in striping when the type is firstRowStripe,
443
- secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
451
+ <p>
452
+ Number of rows or columns used in striping when the type is firstRowStripe,
453
+ secondRowStripe, firstColumnStripe, or secondColumnStripe.
454
+ </p>
444
455
 
445
456
 
446
457
  </div>
@@ -495,37 +506,38 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
495
506
 
496
507
  </p><div class="docstring">
497
508
  <div class="discussion">
498
-
499
- <p>The type of style element. The following type are allowed</p>
500
-
501
- <pre class="code"><span class='symbol val'>:wholeTable</span>
502
- <span class='symbol val'>:headerRow</span>
503
- <span class='symbol val'>:totalRow</span>
504
- <span class='symbol val'>:firstColumn</span>
505
- <span class='symbol val'>:lastColumn</span>
506
- <span class='symbol val'>:firstRowStripe</span>
507
- <span class='symbol val'>:secondRowStripe</span>
508
- <span class='symbol val'>:firstColumnStripe</span>
509
- <span class='symbol val'>:secondColumnStripe</span>
510
- <span class='symbol val'>:firstHeaderCell</span>
511
- <span class='symbol val'>:lastHeaderCell</span>
512
- <span class='symbol val'>:firstTotalCell</span>
513
- <span class='symbol val'>:lastTotalCell</span>
514
- <span class='symbol val'>:firstSubtotalColumn</span>
515
- <span class='symbol val'>:secondSubtotalColumn</span>
516
- <span class='symbol val'>:thirdSubtotalColumn</span>
517
- <span class='symbol val'>:firstSubtotalRow</span>
518
- <span class='symbol val'>:secondSubtotalRow</span>
519
- <span class='symbol val'>:thirdSubtotalRow</span>
520
- <span class='symbol val'>:blankRow</span>
521
- <span class='symbol val'>:firstColumnSubheading</span>
522
- <span class='symbol val'>:secondColumnSubheading</span>
523
- <span class='symbol val'>:thirdColumnSubheading</span>
524
- <span class='symbol val'>:firstRowSubheading</span>
525
- <span class='symbol val'>:secondRowSubheading</span>
526
- <span class='symbol val'>:thirdRowSubheading</span>
527
- <span class='symbol val'>:pageFieldLabels</span>
528
- <span class='symbol val'>:pageFieldValues</span>
509
+ <p>
510
+ The type of style element. The following type are allowed
511
+ </p>
512
+ <pre class="code">
513
+ <span class='symbol val'>:wholeTable</span>
514
+ <span class='symbol val'>:headerRow</span>
515
+ <span class='symbol val'>:totalRow</span>
516
+ <span class='symbol val'>:firstColumn</span>
517
+ <span class='symbol val'>:lastColumn</span>
518
+ <span class='symbol val'>:firstRowStripe</span>
519
+ <span class='symbol val'>:secondRowStripe</span>
520
+ <span class='symbol val'>:firstColumnStripe</span>
521
+ <span class='symbol val'>:secondColumnStripe</span>
522
+ <span class='symbol val'>:firstHeaderCell</span>
523
+ <span class='symbol val'>:lastHeaderCell</span>
524
+ <span class='symbol val'>:firstTotalCell</span>
525
+ <span class='symbol val'>:lastTotalCell</span>
526
+ <span class='symbol val'>:firstSubtotalColumn</span>
527
+ <span class='symbol val'>:secondSubtotalColumn</span>
528
+ <span class='symbol val'>:thirdSubtotalColumn</span>
529
+ <span class='symbol val'>:firstSubtotalRow</span>
530
+ <span class='symbol val'>:secondSubtotalRow</span>
531
+ <span class='symbol val'>:thirdSubtotalRow</span>
532
+ <span class='symbol val'>:blankRow</span>
533
+ <span class='symbol val'>:firstColumnSubheading</span>
534
+ <span class='symbol val'>:secondColumnSubheading</span>
535
+ <span class='symbol val'>:thirdColumnSubheading</span>
536
+ <span class='symbol val'>:firstRowSubheading</span>
537
+ <span class='symbol val'>:secondRowSubheading</span>
538
+ <span class='symbol val'>:thirdRowSubheading</span>
539
+ <span class='symbol val'>:pageFieldLabels</span>
540
+ <span class='symbol val'>:pageFieldValues</span>
529
541
  </pre>
530
542
 
531
543
 
@@ -585,8 +597,9 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
585
597
 
586
598
  </p><div class="docstring">
587
599
  <div class="discussion">
588
-
589
- <p>Serializes the table style element</p>
600
+ <p>
601
+ Serializes the table style element
602
+ </p>
590
603
 
591
604
 
592
605
  </div>
@@ -605,8 +618,9 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
605
618
 
606
619
 
607
620
  &mdash;
608
- <div class='inline'>
609
- <p>The document builder instance this objects xml will be added to.</p>
621
+ <div class='inline'><p>
622
+ The document builder instance this objects xml will be added to.
623
+ </p>
610
624
  </div>
611
625
 
612
626
  </li>
@@ -654,7 +668,7 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe.</p>
654
668
  </div>
655
669
 
656
670
  <div id="footer">
657
- Generated on Wed Nov 30 08:53:42 2011 by
671
+ Generated on Mon Dec 5 14:21:22 2011 by
658
672
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
659
673
  0.7.3 (ruby-1.8.7).
660
674
  </div>
@@ -99,16 +99,18 @@
99
99
 
100
100
  <div class="note notetag">
101
101
  <strong>Note:</strong>
102
- <div class='inline'>
103
- <p>Support for custom table styles does not exist in this version. Many of the
102
+ <div class='inline'><p>
103
+ Support for custom table styles does not exist in this version. Many of the
104
104
  classes required are defined in preparation for future release. Please do
105
- not attempt to add custom table styles.</p>
105
+ not attempt to add custom table styles.
106
+ </p>
106
107
  </div>
107
108
  </div>
108
109
 
109
-
110
- <p>TableStyles represents a collection of style definitions for table styles
111
- and pivot table styles.</p>
110
+ <p>
111
+ TableStyles represents a collection of style definitions for table styles
112
+ and pivot table styles.
113
+ </p>
112
114
 
113
115
 
114
116
  </div>
@@ -144,8 +146,9 @@ and pivot table styles.</p>
144
146
 
145
147
 
146
148
 
147
- <span class="summary_desc"><div class='inline'>
148
- <p>The default pivot table style.</p>
149
+ <span class="summary_desc"><div class='inline'><p>
150
+ The default pivot table style.
151
+ </p>
149
152
  </div></span>
150
153
 
151
154
  </li>
@@ -170,8 +173,9 @@ and pivot table styles.</p>
170
173
 
171
174
 
172
175
 
173
- <span class="summary_desc"><div class='inline'>
174
- <p>The default table style.</p>
176
+ <span class="summary_desc"><div class='inline'><p>
177
+ The default table style.
178
+ </p>
175
179
  </div></span>
176
180
 
177
181
  </li>
@@ -216,9 +220,10 @@ and pivot table styles.</p>
216
220
 
217
221
 
218
222
 
219
- <span class="summary_desc"><div class='inline'>
220
- <p>Creates a new TableStyles object that is a container for TableStyle
221
- objects.</p>
223
+ <span class="summary_desc"><div class='inline'><p>
224
+ Creates a new TableStyles object that is a container for TableStyle
225
+ objects.
226
+ </p>
222
227
  </div></span>
223
228
 
224
229
  </li>
@@ -240,8 +245,9 @@ objects.</p>
240
245
 
241
246
 
242
247
 
243
- <span class="summary_desc"><div class='inline'>
244
- <p>Serializes the table styles element.</p>
248
+ <span class="summary_desc"><div class='inline'><p>
249
+ Serializes the table styles element.
250
+ </p>
245
251
  </div></span>
246
252
 
247
253
  </li>
@@ -267,8 +273,9 @@ objects.</p>
267
273
 
268
274
  </p><div class="docstring">
269
275
  <div class="discussion">
270
-
271
- <p>Creates a new TableStyles object that is a container for TableStyle objects</p>
276
+ <p>
277
+ Creates a new TableStyles object that is a container for TableStyle objects
278
+ </p>
272
279
 
273
280
 
274
281
  </div>
@@ -289,8 +296,9 @@ objects.</p>
289
296
 
290
297
 
291
298
  &mdash;
292
- <div class='inline'>
293
- <p>a customizable set of options</p>
299
+ <div class='inline'><p>
300
+ a customizable set of options
301
+ </p>
294
302
  </div>
295
303
 
296
304
  </li>
@@ -378,8 +386,10 @@ objects.</p>
378
386
 
379
387
  </p><div class="docstring">
380
388
  <div class="discussion">
381
-
382
- <p>The default pivot table style. The default value is ‘PivotStyleLight6’</p>
389
+ <p>
390
+ The default pivot table style. The default value is
391
+ &#8216;PivotStyleLight6&#8217;
392
+ </p>
383
393
 
384
394
 
385
395
  </div>
@@ -434,8 +444,10 @@ objects.</p>
434
444
 
435
445
  </p><div class="docstring">
436
446
  <div class="discussion">
437
-
438
- <p>The default table style. The default value is ‘TableStyleMedium9’</p>
447
+ <p>
448
+ The default table style. The default value is
449
+ &#8216;TableStyleMedium9&#8217;
450
+ </p>
439
451
 
440
452
 
441
453
  </div>
@@ -494,8 +506,9 @@ objects.</p>
494
506
 
495
507
  </p><div class="docstring">
496
508
  <div class="discussion">
497
-
498
- <p>Serializes the table styles element</p>
509
+ <p>
510
+ Serializes the table styles element
511
+ </p>
499
512
 
500
513
 
501
514
  </div>
@@ -514,8 +527,9 @@ objects.</p>
514
527
 
515
528
 
516
529
  &mdash;
517
- <div class='inline'>
518
- <p>The document builder instance this objects xml will be added to.</p>
530
+ <div class='inline'><p>
531
+ The document builder instance this objects xml will be added to.
532
+ </p>
519
533
  </div>
520
534
 
521
535
  </li>
@@ -571,7 +585,7 @@ objects.</p>
571
585
  </div>
572
586
 
573
587
  <div id="footer">
574
- Generated on Wed Nov 30 08:53:48 2011 by
588
+ Generated on Mon Dec 5 14:21:22 2011 by
575
589
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
576
590
  0.7.3 (ruby-1.8.7).
577
591
  </div>