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
data/doc/Axlsx/Fill.html CHANGED
@@ -97,15 +97,17 @@
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 in your workbook is to use
102
- Styles#add_style.</p>
100
+ <div class='inline'><p>
101
+ The recommended way to manage styles in your workbook is to use
102
+ Styles#add_style.
103
+ </p>
103
104
  </div>
104
105
  </div>
105
106
 
106
-
107
- <p>The Fill is a formatting object that manages the background color, and
108
- pattern for cells.</p>
107
+ <p>
108
+ The Fill is a formatting object that manages the background color, and
109
+ pattern for cells.
110
+ </p>
109
111
 
110
112
 
111
113
  </div>
@@ -148,8 +150,9 @@ pattern for cells.</p>
148
150
 
149
151
 
150
152
 
151
- <span class="summary_desc"><div class='inline'>
152
- <p>The type of fill.</p>
153
+ <span class="summary_desc"><div class='inline'><p>
154
+ The type of fill.
155
+ </p>
153
156
  </div></span>
154
157
 
155
158
  </li>
@@ -186,8 +189,9 @@ pattern for cells.</p>
186
189
 
187
190
 
188
191
 
189
- <span class="summary_desc"><div class='inline'>
190
- <p>Creates a new Fill object.</p>
192
+ <span class="summary_desc"><div class='inline'><p>
193
+ Creates a new Fill object.
194
+ </p>
191
195
  </div></span>
192
196
 
193
197
  </li>
@@ -209,8 +213,9 @@ pattern for cells.</p>
209
213
 
210
214
 
211
215
 
212
- <span class="summary_desc"><div class='inline'>
213
- <p>Serializes the fill.</p>
216
+ <span class="summary_desc"><div class='inline'><p>
217
+ Serializes the fill.
218
+ </p>
214
219
  </div></span>
215
220
 
216
221
  </li>
@@ -231,8 +236,9 @@ pattern for cells.</p>
231
236
 
232
237
  </p><div class="docstring">
233
238
  <div class="discussion">
234
-
235
- <p>Creates a new Fill object</p>
239
+ <p>
240
+ Creates a new Fill object
241
+ </p>
236
242
 
237
243
 
238
244
  </div>
@@ -265,8 +271,9 @@ pattern for cells.</p>
265
271
 
266
272
 
267
273
  &mdash;
268
- <div class='inline'>
269
- <p>if the fill_type parameter is not a PatternFill or a GradientFill instance</p>
274
+ <div class='inline'><p>
275
+ if the fill_type parameter is not a PatternFill or a GradientFill instance
276
+ </p>
270
277
  </div>
271
278
 
272
279
  </li>
@@ -312,8 +319,9 @@ pattern for cells.</p>
312
319
 
313
320
  </p><div class="docstring">
314
321
  <div class="discussion">
315
-
316
- <p>The type of fill</p>
322
+ <p>
323
+ The type of fill
324
+ </p>
317
325
 
318
326
 
319
327
  </div>
@@ -372,8 +380,9 @@ pattern for cells.</p>
372
380
 
373
381
  </p><div class="docstring">
374
382
  <div class="discussion">
375
-
376
- <p>Serializes the fill</p>
383
+ <p>
384
+ Serializes the fill
385
+ </p>
377
386
 
378
387
 
379
388
  </div>
@@ -392,8 +401,9 @@ pattern for cells.</p>
392
401
 
393
402
 
394
403
  &mdash;
395
- <div class='inline'>
396
- <p>The document builder instance this objects xml will be added to.</p>
404
+ <div class='inline'><p>
405
+ The document builder instance this objects xml will be added to.
406
+ </p>
397
407
  </div>
398
408
 
399
409
  </li>
@@ -441,7 +451,7 @@ pattern for cells.</p>
441
451
  </div>
442
452
 
443
453
  <div id="footer">
444
- Generated on Wed Nov 30 08:53:49 2011 by
454
+ Generated on Mon Dec 5 14:21:07 2011 by
445
455
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
446
456
  0.7.3 (ruby-1.8.7).
447
457
  </div>
data/doc/Axlsx/Font.html CHANGED
@@ -97,13 +97,15 @@
97
97
 
98
98
  <div class="note notetag">
99
99
  <strong>Note:</strong>
100
- <div class='inline'>
101
- <p>The recommended way to manage fonts, and other styles is Styles#add_style</p>
100
+ <div class='inline'><p>
101
+ The recommended way to manage fonts, and other styles is Styles#add_style
102
+ </p>
102
103
  </div>
103
104
  </div>
104
105
 
105
-
106
- <p>The Font class details a font instance for use in styling cells.</p>
106
+ <p>
107
+ The Font class details a font instance for use in styling cells.
108
+ </p>
107
109
 
108
110
 
109
111
  </div>
@@ -142,8 +144,9 @@
142
144
 
143
145
 
144
146
 
145
- <span class="summary_desc"><div class='inline'>
146
- <p>Indicates if the font should be rendered in <strong>bold</strong>.</p>
147
+ <span class="summary_desc"><div class='inline'><p>
148
+ Indicates if the font should be rendered in <b>bold</b>.
149
+ </p>
147
150
  </div></span>
148
151
 
149
152
  </li>
@@ -168,8 +171,9 @@
168
171
 
169
172
 
170
173
 
171
- <span class="summary_desc"><div class='inline'>
172
- <p>The charset of the font.</p>
174
+ <span class="summary_desc"><div class='inline'><p>
175
+ The charset of the font.
176
+ </p>
173
177
  </div></span>
174
178
 
175
179
  </li>
@@ -194,8 +198,9 @@
194
198
 
195
199
 
196
200
 
197
- <span class="summary_desc"><div class='inline'>
198
- <p>The color of the font.</p>
201
+ <span class="summary_desc"><div class='inline'><p>
202
+ The color of the font.
203
+ </p>
199
204
  </div></span>
200
205
 
201
206
  </li>
@@ -220,8 +225,9 @@
220
225
 
221
226
 
222
227
 
223
- <span class="summary_desc"><div class='inline'>
224
- <p>Indicates if the font should be condensed.</p>
228
+ <span class="summary_desc"><div class='inline'><p>
229
+ Indicates if the font should be condensed.
230
+ </p>
225
231
  </div></span>
226
232
 
227
233
  </li>
@@ -246,8 +252,9 @@
246
252
 
247
253
 
248
254
 
249
- <span class="summary_desc"><div class='inline'>
250
- <p>The fonts extend property.</p>
255
+ <span class="summary_desc"><div class='inline'><p>
256
+ The font&#8217;s extend property.
257
+ </p>
251
258
  </div></span>
252
259
 
253
260
  </li>
@@ -272,8 +279,9 @@
272
279
 
273
280
 
274
281
 
275
- <span class="summary_desc"><div class='inline'>
276
- <p>The fonts family.</p>
282
+ <span class="summary_desc"><div class='inline'><p>
283
+ The font&#8217;s family.
284
+ </p>
277
285
  </div></span>
278
286
 
279
287
  </li>
@@ -298,8 +306,9 @@
298
306
 
299
307
 
300
308
 
301
- <span class="summary_desc"><div class='inline'>
302
- <p>Indicates if the font should be rendered italicized.</p>
309
+ <span class="summary_desc"><div class='inline'><p>
310
+ Indicates if the font should be rendered italicized.
311
+ </p>
303
312
  </div></span>
304
313
 
305
314
  </li>
@@ -324,8 +333,9 @@
324
333
 
325
334
 
326
335
 
327
- <span class="summary_desc"><div class='inline'>
328
- <p>The name of the font.</p>
336
+ <span class="summary_desc"><div class='inline'><p>
337
+ The name of the font.
338
+ </p>
329
339
  </div></span>
330
340
 
331
341
  </li>
@@ -350,8 +360,9 @@
350
360
 
351
361
 
352
362
 
353
- <span class="summary_desc"><div class='inline'>
354
- <p>Indicates if the font should be rendered with an outline.</p>
363
+ <span class="summary_desc"><div class='inline'><p>
364
+ Indicates if the font should be rendered with an outline.
365
+ </p>
355
366
  </div></span>
356
367
 
357
368
  </li>
@@ -376,8 +387,9 @@
376
387
 
377
388
 
378
389
 
379
- <span class="summary_desc"><div class='inline'>
380
- <p>Indicates if the font should be rendered with a shadow.</p>
390
+ <span class="summary_desc"><div class='inline'><p>
391
+ Indicates if the font should be rendered with a shadow.
392
+ </p>
381
393
  </div></span>
382
394
 
383
395
  </li>
@@ -402,8 +414,9 @@
402
414
 
403
415
 
404
416
 
405
- <span class="summary_desc"><div class='inline'>
406
- <p>Indicates if the font should be rendered with a strikthrough.</p>
417
+ <span class="summary_desc"><div class='inline'><p>
418
+ Indicates if the font should be rendered with a strikthrough.
419
+ </p>
407
420
  </div></span>
408
421
 
409
422
  </li>
@@ -428,8 +441,9 @@
428
441
 
429
442
 
430
443
 
431
- <span class="summary_desc"><div class='inline'>
432
- <p>The size of the font.</p>
444
+ <span class="summary_desc"><div class='inline'><p>
445
+ The size of the font.
446
+ </p>
433
447
  </div></span>
434
448
 
435
449
  </li>
@@ -466,8 +480,9 @@
466
480
 
467
481
 
468
482
 
469
- <span class="summary_desc"><div class='inline'>
470
- <p>Creates a new Font.</p>
483
+ <span class="summary_desc"><div class='inline'><p>
484
+ Creates a new Font.
485
+ </p>
471
486
  </div></span>
472
487
 
473
488
  </li>
@@ -489,8 +504,9 @@
489
504
 
490
505
 
491
506
 
492
- <span class="summary_desc"><div class='inline'>
493
- <p>Serializes the fill.</p>
507
+ <span class="summary_desc"><div class='inline'><p>
508
+ Serializes the fill.
509
+ </p>
494
510
  </div></span>
495
511
 
496
512
  </li>
@@ -511,8 +527,9 @@
511
527
 
512
528
  </p><div class="docstring">
513
529
  <div class="discussion">
514
-
515
- <p>Creates a new Font</p>
530
+ <p>
531
+ Creates a new Font
532
+ </p>
516
533
 
517
534
 
518
535
  </div>
@@ -533,8 +550,9 @@
533
550
 
534
551
 
535
552
  &mdash;
536
- <div class='inline'>
537
- <p>a customizable set of options</p>
553
+ <div class='inline'><p>
554
+ a customizable set of options
555
+ </p>
538
556
  </div>
539
557
 
540
558
  </li>
@@ -711,8 +729,9 @@
711
729
 
712
730
  </p><div class="docstring">
713
731
  <div class="discussion">
714
-
715
- <p>Indicates if the font should be rendered in <strong>bold</strong></p>
732
+ <p>
733
+ Indicates if the font should be rendered in <b>bold</b>
734
+ </p>
716
735
 
717
736
 
718
737
  </div>
@@ -770,35 +789,37 @@
770
789
 
771
790
  <div class="note notetag">
772
791
  <strong>Note:</strong>
773
- <div class='inline'>
774
- <p>The following values are defined in the OOXML specification and are OS
775
- dependant values</p>
776
-
777
- <pre class="code"><span class='integer val'>0</span> <span class='ANSI_CHARSET constant id'>ANSI_CHARSET</span>
778
- <span class='integer val'>1</span> <span class='DEFAULT_CHARSET constant id'>DEFAULT_CHARSET</span>
779
- <span class='integer val'>2</span> <span class='SYMBOL_CHARSET constant id'>SYMBOL_CHARSET</span>
780
- <span class='integer val'>77</span> <span class='MAC_CHARSET constant id'>MAC_CHARSET</span>
781
- <span class='integer val'>128</span> <span class='SHIFTJIS_CHARSET constant id'>SHIFTJIS_CHARSET</span>
782
- <span class='integer val'>129</span> <span class='HANGUL_CHARSET constant id'>HANGUL_CHARSET</span>
783
- <span class='integer val'>130</span> <span class='JOHAB_CHARSET constant id'>JOHAB_CHARSET</span>
784
- <span class='integer val'>134</span> <span class='GB2312_CHARSET constant id'>GB2312_CHARSET</span>
785
- <span class='integer val'>136</span> <span class='CHINESEBIG5_CHARSET constant id'>CHINESEBIG5_CHARSET</span>
786
- <span class='integer val'>161</span> <span class='GREEK_CHARSET constant id'>GREEK_CHARSET</span>
787
- <span class='integer val'>162</span> <span class='TURKISH_CHARSET constant id'>TURKISH_CHARSET</span>
788
- <span class='integer val'>163</span> <span class='VIETNAMESE_CHARSET constant id'>VIETNAMESE_CHARSET</span>
789
- <span class='integer val'>177</span> <span class='HEBREW_CHARSET constant id'>HEBREW_CHARSET</span>
790
- <span class='integer val'>178</span> <span class='ARABIC_CHARSET constant id'>ARABIC_CHARSET</span>
791
- <span class='integer val'>186</span> <span class='BALTIC_CHARSET constant id'>BALTIC_CHARSET</span>
792
- <span class='integer val'>204</span> <span class='RUSSIAN_CHARSET constant id'>RUSSIAN_CHARSET</span>
793
- <span class='integer val'>222</span> <span class='THAI_CHARSET constant id'>THAI_CHARSET</span>
794
- <span class='integer val'>238</span> <span class='EASTEUROPE_CHARSET constant id'>EASTEUROPE_CHARSET</span>
795
- <span class='integer val'>255</span> <span class='OEM_CHARSET constant id'>OEM_CHARSET</span>
792
+ <div class='inline'><p>
793
+ The following values are defined in the OOXML specification and are OS
794
+ dependant values
795
+ </p>
796
+ <pre class="code">
797
+ <span class='integer val'>0</span> <span class='ANSI_CHARSET constant id'>ANSI_CHARSET</span>
798
+ <span class='integer val'>1</span> <span class='DEFAULT_CHARSET constant id'>DEFAULT_CHARSET</span>
799
+ <span class='integer val'>2</span> <span class='SYMBOL_CHARSET constant id'>SYMBOL_CHARSET</span>
800
+ <span class='integer val'>77</span> <span class='MAC_CHARSET constant id'>MAC_CHARSET</span>
801
+ <span class='integer val'>128</span> <span class='SHIFTJIS_CHARSET constant id'>SHIFTJIS_CHARSET</span>
802
+ <span class='integer val'>129</span> <span class='HANGUL_CHARSET constant id'>HANGUL_CHARSET</span>
803
+ <span class='integer val'>130</span> <span class='JOHAB_CHARSET constant id'>JOHAB_CHARSET</span>
804
+ <span class='integer val'>134</span> <span class='GB2312_CHARSET constant id'>GB2312_CHARSET</span>
805
+ <span class='integer val'>136</span> <span class='CHINESEBIG5_CHARSET constant id'>CHINESEBIG5_CHARSET</span>
806
+ <span class='integer val'>161</span> <span class='GREEK_CHARSET constant id'>GREEK_CHARSET</span>
807
+ <span class='integer val'>162</span> <span class='TURKISH_CHARSET constant id'>TURKISH_CHARSET</span>
808
+ <span class='integer val'>163</span> <span class='VIETNAMESE_CHARSET constant id'>VIETNAMESE_CHARSET</span>
809
+ <span class='integer val'>177</span> <span class='HEBREW_CHARSET constant id'>HEBREW_CHARSET</span>
810
+ <span class='integer val'>178</span> <span class='ARABIC_CHARSET constant id'>ARABIC_CHARSET</span>
811
+ <span class='integer val'>186</span> <span class='BALTIC_CHARSET constant id'>BALTIC_CHARSET</span>
812
+ <span class='integer val'>204</span> <span class='RUSSIAN_CHARSET constant id'>RUSSIAN_CHARSET</span>
813
+ <span class='integer val'>222</span> <span class='THAI_CHARSET constant id'>THAI_CHARSET</span>
814
+ <span class='integer val'>238</span> <span class='EASTEUROPE_CHARSET constant id'>EASTEUROPE_CHARSET</span>
815
+ <span class='integer val'>255</span> <span class='OEM_CHARSET constant id'>OEM_CHARSET</span>
796
816
  </pre>
797
817
  </div>
798
818
  </div>
799
819
 
800
-
801
- <p>The charset of the font</p>
820
+ <p>
821
+ The charset of the font
822
+ </p>
802
823
 
803
824
 
804
825
  </div>
@@ -853,8 +874,9 @@ dependant values</p>
853
874
 
854
875
  </p><div class="docstring">
855
876
  <div class="discussion">
856
-
857
- <p>The color of the font</p>
877
+ <p>
878
+ The color of the font
879
+ </p>
858
880
 
859
881
 
860
882
  </div>
@@ -909,8 +931,9 @@ dependant values</p>
909
931
 
910
932
  </p><div class="docstring">
911
933
  <div class="discussion">
912
-
913
- <p>Indicates if the font should be condensed</p>
934
+ <p>
935
+ Indicates if the font should be condensed
936
+ </p>
914
937
 
915
938
 
916
939
  </div>
@@ -965,8 +988,9 @@ dependant values</p>
965
988
 
966
989
  </p><div class="docstring">
967
990
  <div class="discussion">
968
-
969
- <p>The fonts extend property</p>
991
+ <p>
992
+ The font&#8217;s extend property
993
+ </p>
970
994
 
971
995
 
972
996
  </div>
@@ -1024,22 +1048,24 @@ dependant values</p>
1024
1048
 
1025
1049
  <div class="note notetag">
1026
1050
  <strong>Note:</strong>
1027
- <div class='inline'>
1028
- <p>The following are defined OOXML specification</p>
1029
-
1030
- <pre class="code"><span class='integer val'>0</span> <span class='Not constant id'>Not</span> <span class='applicable identifier id'>applicable</span><span class='dot token'>.</span>
1031
- <span class='integer val'>1</span> <span class='Roman constant id'>Roman</span>
1032
- <span class='integer val'>2</span> <span class='Swiss constant id'>Swiss</span>
1033
- <span class='integer val'>3</span> <span class='Modern constant id'>Modern</span>
1034
- <span class='integer val'>4</span> <span class='Script constant id'>Script</span>
1035
- <span class='integer val'>5</span> <span class='Decorative constant id'>Decorative</span>
1036
- <span class='float val'>6</span><span class='dot2 op'>..</span><span class='integer val'>14</span> <span class='Reserved constant id'>Reserved</span> <span class='for for kw'>for</span> <span class='future identifier id'>future</span> <span class='use identifier id'>use</span>
1051
+ <div class='inline'><p>
1052
+ The following are defined OOXML specification
1053
+ </p>
1054
+ <pre class="code">
1055
+ <span class='integer val'>0</span> <span class='Not constant id'>Not</span> <span class='applicable identifier id'>applicable</span><span class='dot token'>.</span>
1056
+ <span class='integer val'>1</span> <span class='Roman constant id'>Roman</span>
1057
+ <span class='integer val'>2</span> <span class='Swiss constant id'>Swiss</span>
1058
+ <span class='integer val'>3</span> <span class='Modern constant id'>Modern</span>
1059
+ <span class='integer val'>4</span> <span class='Script constant id'>Script</span>
1060
+ <span class='integer val'>5</span> <span class='Decorative constant id'>Decorative</span>
1061
+ <span class='float val'>6</span><span class='dot2 op'>..</span><span class='integer val'>14</span> <span class='Reserved constant id'>Reserved</span> <span class='for for kw'>for</span> <span class='future identifier id'>future</span> <span class='use identifier id'>use</span>
1037
1062
  </pre>
1038
1063
  </div>
1039
1064
  </div>
1040
1065
 
1041
-
1042
- <p>The fonts family</p>
1066
+ <p>
1067
+ The font&#8217;s family
1068
+ </p>
1043
1069
 
1044
1070
 
1045
1071
  </div>
@@ -1094,8 +1120,9 @@ dependant values</p>
1094
1120
 
1095
1121
  </p><div class="docstring">
1096
1122
  <div class="discussion">
1097
-
1098
- <p>Indicates if the font should be rendered italicized</p>
1123
+ <p>
1124
+ Indicates if the font should be rendered italicized
1125
+ </p>
1099
1126
 
1100
1127
 
1101
1128
  </div>
@@ -1150,8 +1177,9 @@ dependant values</p>
1150
1177
 
1151
1178
  </p><div class="docstring">
1152
1179
  <div class="discussion">
1153
-
1154
- <p>The name of the font</p>
1180
+ <p>
1181
+ The name of the font
1182
+ </p>
1155
1183
 
1156
1184
 
1157
1185
  </div>
@@ -1206,8 +1234,9 @@ dependant values</p>
1206
1234
 
1207
1235
  </p><div class="docstring">
1208
1236
  <div class="discussion">
1209
-
1210
- <p>Indicates if the font should be rendered with an outline</p>
1237
+ <p>
1238
+ Indicates if the font should be rendered with an outline
1239
+ </p>
1211
1240
 
1212
1241
 
1213
1242
  </div>
@@ -1262,8 +1291,9 @@ dependant values</p>
1262
1291
 
1263
1292
  </p><div class="docstring">
1264
1293
  <div class="discussion">
1265
-
1266
- <p>Indicates if the font should be rendered with a shadow</p>
1294
+ <p>
1295
+ Indicates if the font should be rendered with a shadow
1296
+ </p>
1267
1297
 
1268
1298
 
1269
1299
  </div>
@@ -1318,8 +1348,9 @@ dependant values</p>
1318
1348
 
1319
1349
  </p><div class="docstring">
1320
1350
  <div class="discussion">
1321
-
1322
- <p>Indicates if the font should be rendered with a strikthrough</p>
1351
+ <p>
1352
+ Indicates if the font should be rendered with a strikthrough
1353
+ </p>
1323
1354
 
1324
1355
 
1325
1356
  </div>
@@ -1374,8 +1405,9 @@ dependant values</p>
1374
1405
 
1375
1406
  </p><div class="docstring">
1376
1407
  <div class="discussion">
1377
-
1378
- <p>The size of the font.</p>
1408
+ <p>
1409
+ The size of the font.
1410
+ </p>
1379
1411
 
1380
1412
 
1381
1413
  </div>
@@ -1434,8 +1466,9 @@ dependant values</p>
1434
1466
 
1435
1467
  </p><div class="docstring">
1436
1468
  <div class="discussion">
1437
-
1438
- <p>Serializes the fill</p>
1469
+ <p>
1470
+ Serializes the fill
1471
+ </p>
1439
1472
 
1440
1473
 
1441
1474
  </div>
@@ -1454,8 +1487,9 @@ dependant values</p>
1454
1487
 
1455
1488
 
1456
1489
  &mdash;
1457
- <div class='inline'>
1458
- <p>The document builder instance this objects xml will be added to.</p>
1490
+ <div class='inline'><p>
1491
+ The document builder instance this objects xml will be added to.
1492
+ </p>
1459
1493
  </div>
1460
1494
 
1461
1495
  </li>
@@ -1511,7 +1545,7 @@ dependant values</p>
1511
1545
  </div>
1512
1546
 
1513
1547
  <div id="footer">
1514
- Generated on Wed Nov 30 08:53:42 2011 by
1548
+ Generated on Mon Dec 5 14:21:11 2011 by
1515
1549
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1516
1550
  0.7.3 (ruby-1.8.7).
1517
1551
  </div>