diff options
| author | Randy Morgan <[email protected]> | 2011-11-30 08:53:14 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2011-11-30 08:53:14 +0900 |
| commit | 076be316935180341d7ee7a9335281a4b18d1fa9 (patch) | |
| tree | 8754af1eaadb7fa1585aaedcd7845d68b7985d3c | |
| parent | e99f1ecbe8311f1dbe2b889a82a528f3e85e366d (diff) | |
| download | caxlsx-076be316935180341d7ee7a9335281a4b18d1fa9.tar.gz caxlsx-076be316935180341d7ee7a9335281a4b18d1fa9.zip | |
pre 1.0.10 release commit
71 files changed, 3401 insertions, 4631 deletions
diff --git a/.yardoc/checksums b/.yardoc/checksums index 2d1319ca..c90eb6b9 100644 --- a/.yardoc/checksums +++ b/.yardoc/checksums @@ -19,7 +19,7 @@ lib/axlsx/stylesheet/table_style_element.rb 117b80432ed6191c81a9e07bd467281319d2 lib/axlsx/content_type/content_type.rb 6c576e1618f99f7163fffa6b6e89e964653dcb5f lib/axlsx/rels/relationships.rb 9c741e180796259bb378a789fd484fa1d8f04425 lib/axlsx/stylesheet/num_fmt.rb 796ee45611b89e8a670dcff3dd97ad9306f18048 -lib/axlsx.rb 95ca38c3323064bedcfc86ac80488c25b8841762 +lib/axlsx.rb 98da8c39c002ea0389b3d91318a10fada3a96d92 lib/axlsx/content_type/override.rb 43ff5dbbb01fbe0237a11c3da7fa5d8e1d5b67ef lib/axlsx/drawing/graphic_frame.rb 271e897616d85ebc069820c0d6a7dd3a716deff2 lib/axlsx/drawing/pie_series.rb 66dfb2152f3b0e80b358c7af9061beb3c4ab984d @@ -39,7 +39,7 @@ lib/axlsx/util/validators.rb c70f27b943d3711fbe1244a8311789a6fad7e31e lib/axlsx/stylesheet/font.rb 1ee29414f720d26b7d484a90d8ebdaa7ecda4fa6 lib/axlsx/doc_props/app.rb c64077808d7cb6aa30472e15c600009a01f3f338 lib/axlsx/workbook/worksheet/worksheet.rb 8f2dea71b5b95d700127958757301495a444e5c8 -lib/axlsx/workbook/worksheet/cell.rb 043fb997d55e24cd0c11bc20cf43e36b0fadb9c1 +lib/axlsx/workbook/worksheet/cell.rb 38a373677f808fabf4b65eaff7e081dca0e539de lib/axlsx/rels/relationship.rb 8d279056b53ba22ff288187ff0f3d18273dcdcb7 lib/axlsx/stylesheet/border.rb cee9b6982c4a946f7caa850090f72d0d7ce0a0d2 lib/axlsx/drawing/ser_axis.rb 1f4952403738e3089e30deb266b1385679d46096 diff --git a/.yardoc/objects/root.dat b/.yardoc/objects/root.dat Binary files differindex dddaa35f..f36ded2c 100644 --- a/.yardoc/objects/root.dat +++ b/.yardoc/objects/root.dat diff --git a/Gemfile.lock b/Gemfile.lock index 9f828391..0f4d18d1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,19 +1,10 @@ -PATH - remote: . - specs: - axlsx (1.0.10) - activesupport (>= 2.3.9) - nokogiri (>= 1.4.1) - rmagick (>= 2.12.2) - zip (~> 2.0.2) - GEM remote: http://rubygems.org/ specs: - activesupport (3.1.3) - multi_json (~> 1.0) - multi_json (1.0.3) + activesupport (3.0.0) + i18n (0.6.0) nokogiri (1.5.0) + rake (0.9.2) rmagick (2.13.1) zip (2.0.2) @@ -21,4 +12,9 @@ PLATFORMS ruby DEPENDENCIES - axlsx! + activesupport (>= 2.3.9) + i18n + nokogiri (>= 1.4.1) + rake + rmagick (>= 2.12.2) + zip (>= 2.0.2) @@ -10,7 +10,7 @@ Axlsx: Office Open XML Spreadsheet Generation **Latest Version**: 1.0.10 **Ruby Version**: 1.8.7, 1.9.3 -**Release Date**: November 29th 2011 +**Release Date**: November 30th 2011 Synopsis -------- @@ -209,12 +209,15 @@ This gem has 100% test coverage using test/unit. To execute tests for this gem, Changelog --------- -- **October.29.11**: 1.0.10 release +- **October.30.11**: 1.0.10 release - Updating gemspec to lower gem version requirements. - Added row.style assignation for updating the cell style for an entire row - Added col_style method to worksheet upate a the style for a column of cells - Added cols for an easy reference to columns in a worksheet. - - prep for release of acts_as_xlsx gem + - prep for pre release of acts_as_xlsx gem + - added in travis.ci configuration and build status + - fixed out of range bug in time calculations for 32bit time. + - added i18n for active support - **October.26.11**: 1.0.9 release - Updated to support ruby 1.9.3 diff --git a/axlsx.gemspec b/axlsx.gemspec index ae686a0c..793e7e0c 100644 --- a/axlsx.gemspec +++ b/axlsx.gemspec @@ -25,9 +25,11 @@ Gem::Specification.new do |s| s.add_runtime_dependency 'nokogiri', '>= 1.4.1' s.add_runtime_dependency 'activesupport', '>= 2.3.9' + s.add_runtime_dependency 'i18n', '>= 0.6.0' s.add_runtime_dependency 'rmagick', '>= 2.12.2' s.add_runtime_dependency 'zip', '>= 2.0.2' s.add_development_dependency 'rake' + s.add_development_dependency 'bundler' s.required_ruby_version = '>= 1.8.7' s.require_path = 'lib' diff --git a/doc/Axlsx.html b/doc/Axlsx.html index cf1968d4..402e44ca 100644 --- a/doc/Axlsx.html +++ b/doc/Axlsx.html @@ -81,15 +81,14 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -xlsx generation with charts, images, automated column width, customizable + +<p>xlsx generation with charts, images, automated column width, customizable styles and full schema validation. Axlsx excels at helping you generate beautiful Office Open XML Spreadsheet documents without having to understand the entire ECMA specification. Check out the README for some examples of how easy it is. Best of all, you can validate your xlsx file before serialization so you know for sure that anything generated is going -to load on your client’s machine. -</p> +to load on your client’s machine.</p> </div> @@ -115,9 +114,8 @@ to load on your client’s machine. <dt id="VERSION-constant" class="">VERSION = <div class="docstring"> <div class="discussion"> - <p> -version -</p> + +<p>version</p> </div> @@ -133,9 +131,8 @@ version <dt id="ENCODING-constant" class="">ENCODING = <div class="docstring"> <div class="discussion"> - <p> -XML Encoding -</p> + +<p>XML Encoding</p> </div> @@ -151,9 +148,8 @@ XML Encoding <dt id="XML_NS-constant" class="">XML_NS = <div class="docstring"> <div class="discussion"> - <p> -spreadsheetML namespace -</p> + +<p>spreadsheetML namespace</p> </div> @@ -169,9 +165,8 @@ spreadsheetML namespace <dt id="XML_NS_T-constant" class="">XML_NS_T = <div class="docstring"> <div class="discussion"> - <p> -content-types namespace -</p> + +<p>content-types namespace</p> </div> @@ -187,9 +182,8 @@ content-types namespace <dt id="APP_NS-constant" class="">APP_NS = <div class="docstring"> <div class="discussion"> - <p> -extended-properties namespace -</p> + +<p>extended-properties namespace</p> </div> @@ -205,9 +199,8 @@ extended-properties namespace <dt id="APP_NS_VT-constant" class="">APP_NS_VT = <div class="docstring"> <div class="discussion"> - <p> -doc props namespace -</p> + +<p>doc props namespace</p> </div> @@ -223,9 +216,8 @@ doc props namespace <dt id="CORE_NS-constant" class="">CORE_NS = <div class="docstring"> <div class="discussion"> - <p> -core properties namespace -</p> + +<p>core properties namespace</p> </div> @@ -241,9 +233,8 @@ core properties namespace <dt id="CORE_NS_DC-constant" class="">CORE_NS_DC = <div class="docstring"> <div class="discussion"> - <p> -dc elements (core) namespace -</p> + +<p>dc elements (core) namespace</p> </div> @@ -259,9 +250,8 @@ dc elements (core) namespace <dt id="CORE_NS_DCMIT-constant" class="">CORE_NS_DCMIT = <div class="docstring"> <div class="discussion"> - <p> -dcmit (core) namespcace -</p> + +<p>dcmit (core) namespcace</p> </div> @@ -277,9 +267,8 @@ dcmit (core) namespcace <dt id="CORE_NS_DCT-constant" class="">CORE_NS_DCT = <div class="docstring"> <div class="discussion"> - <p> -dc terms namespace -</p> + +<p>dc terms namespace</p> </div> @@ -295,9 +284,8 @@ dc terms namespace <dt id="CORE_NS_XSI-constant" class="">CORE_NS_XSI = <div class="docstring"> <div class="discussion"> - <p> -xml schema namespace -</p> + +<p>xml schema namespace</p> </div> @@ -313,9 +301,8 @@ xml schema namespace <dt id="XML_NS_XDR-constant" class="">XML_NS_XDR = <div class="docstring"> <div class="discussion"> - <p> -spreadsheet drawing namespace -</p> + +<p>spreadsheet drawing namespace</p> </div> @@ -331,9 +318,8 @@ spreadsheet drawing namespace <dt id="XML_NS_A-constant" class="">XML_NS_A = <div class="docstring"> <div class="discussion"> - <p> -drawing namespace -</p> + +<p>drawing namespace</p> </div> @@ -349,9 +335,8 @@ drawing namespace <dt id="XML_NS_C-constant" class="">XML_NS_C = <div class="docstring"> <div class="discussion"> - <p> -chart namespace -</p> + +<p>chart namespace</p> </div> @@ -367,9 +352,8 @@ chart namespace <dt id="XML_NS_R-constant" class="">XML_NS_R = <div class="docstring"> <div class="discussion"> - <p> -relationships namespace -</p> + +<p>relationships namespace</p> </div> @@ -385,9 +369,8 @@ relationships namespace <dt id="RELS_R-constant" class="">RELS_R = <div class="docstring"> <div class="discussion"> - <p> -relationships name space -</p> + +<p>relationships name space</p> </div> @@ -403,9 +386,8 @@ relationships name space <dt id="TABLE_R-constant" class="">TABLE_R = <div class="docstring"> <div class="discussion"> - <p> -table rels namespace -</p> + +<p>table rels namespace</p> </div> @@ -421,9 +403,8 @@ table rels namespace <dt id="WORKBOOK_R-constant" class="">WORKBOOK_R = <div class="docstring"> <div class="discussion"> - <p> -workbook rels namespace -</p> + +<p>workbook rels namespace</p> </div> @@ -439,9 +420,8 @@ workbook rels namespace <dt id="WORKSHEET_R-constant" class="">WORKSHEET_R = <div class="docstring"> <div class="discussion"> - <p> -worksheet rels namespace -</p> + +<p>worksheet rels namespace</p> </div> @@ -457,9 +437,8 @@ worksheet rels namespace <dt id="APP_R-constant" class="">APP_R = <div class="docstring"> <div class="discussion"> - <p> -app rels namespace -</p> + +<p>app rels namespace</p> </div> @@ -475,9 +454,8 @@ app rels namespace <dt id="CORE_R-constant" class="">CORE_R = <div class="docstring"> <div class="discussion"> - <p> -core rels namespace -</p> + +<p>core rels namespace</p> </div> @@ -493,9 +471,8 @@ core rels namespace <dt id="STYLES_R-constant" class="">STYLES_R = <div class="docstring"> <div class="discussion"> - <p> -styles rels namespace -</p> + +<p>styles rels namespace</p> </div> @@ -511,9 +488,8 @@ styles rels namespace <dt id="DRAWING_R-constant" class="">DRAWING_R = <div class="docstring"> <div class="discussion"> - <p> -drawing rels namespace -</p> + +<p>drawing rels namespace</p> </div> @@ -529,9 +505,8 @@ drawing rels namespace <dt id="CHART_R-constant" class="">CHART_R = <div class="docstring"> <div class="discussion"> - <p> -chart rels namespace -</p> + +<p>chart rels namespace</p> </div> @@ -547,9 +522,8 @@ chart rels namespace <dt id="IMAGE_R-constant" class="">IMAGE_R = <div class="docstring"> <div class="discussion"> - <p> -image rels namespace -</p> + +<p>image rels namespace</p> </div> @@ -565,9 +539,8 @@ image rels namespace <dt id="TABLE_CT-constant" class="">TABLE_CT = <div class="docstring"> <div class="discussion"> - <p> -table content type -</p> + +<p>table content type</p> </div> @@ -583,9 +556,8 @@ table content type <dt id="WORKBOOK_CT-constant" class="">WORKBOOK_CT = <div class="docstring"> <div class="discussion"> - <p> -workbook content type -</p> + +<p>workbook content type</p> </div> @@ -601,9 +573,8 @@ workbook content type <dt id="APP_CT-constant" class="">APP_CT = <div class="docstring"> <div class="discussion"> - <p> -app content type -</p> + +<p>app content type</p> </div> @@ -619,9 +590,8 @@ app content type <dt id="RELS_CT-constant" class="">RELS_CT = <div class="docstring"> <div class="discussion"> - <p> -rels content type -</p> + +<p>rels content type</p> </div> @@ -637,9 +607,8 @@ rels content type <dt id="STYLES_CT-constant" class="">STYLES_CT = <div class="docstring"> <div class="discussion"> - <p> -styles content type -</p> + +<p>styles content type</p> </div> @@ -655,9 +624,8 @@ styles content type <dt id="XML_CT-constant" class="">XML_CT = <div class="docstring"> <div class="discussion"> - <p> -xml content type -</p> + +<p>xml content type</p> </div> @@ -673,9 +641,8 @@ xml content type <dt id="WORKSHEET_CT-constant" class="">WORKSHEET_CT = <div class="docstring"> <div class="discussion"> - <p> -worksheet content type -</p> + +<p>worksheet content type</p> </div> @@ -691,9 +658,8 @@ worksheet content type <dt id="SHARED_STRINGS_CT-constant" class="">SHARED_STRINGS_CT = <div class="docstring"> <div class="discussion"> - <p> -shared strings content type -</p> + +<p>shared strings content type</p> </div> @@ -709,9 +675,8 @@ shared strings content type <dt id="CORE_CT-constant" class="">CORE_CT = <div class="docstring"> <div class="discussion"> - <p> -core content type -</p> + +<p>core content type</p> </div> @@ -727,9 +692,8 @@ core content type <dt id="CHART_CT-constant" class="">CHART_CT = <div class="docstring"> <div class="discussion"> - <p> -chart content type -</p> + +<p>chart content type</p> </div> @@ -745,9 +709,8 @@ chart content type <dt id="JPEG_CT-constant" class="">JPEG_CT = <div class="docstring"> <div class="discussion"> - <p> -jpeg content type -</p> + +<p>jpeg content type</p> </div> @@ -763,9 +726,8 @@ jpeg content type <dt id="GIF_CT-constant" class="">GIF_CT = <div class="docstring"> <div class="discussion"> - <p> -gif content type -</p> + +<p>gif content type</p> </div> @@ -781,9 +743,8 @@ gif content type <dt id="PNG_CT-constant" class="">PNG_CT = <div class="docstring"> <div class="discussion"> - <p> -png content type -</p> + +<p>png content type</p> </div> @@ -799,9 +760,8 @@ png content type <dt id="DRAWING_CT-constant" class="">DRAWING_CT = <div class="docstring"> <div class="discussion"> - <p> -drawing content type -</p> + +<p>drawing content type</p> </div> @@ -817,9 +777,8 @@ drawing content type <dt id="XML_EX-constant" class="">XML_EX = <div class="docstring"> <div class="discussion"> - <p> -xml content type extensions -</p> + +<p>xml content type extensions</p> </div> @@ -835,9 +794,8 @@ xml content type extensions <dt id="JPEG_EX-constant" class="">JPEG_EX = <div class="docstring"> <div class="discussion"> - <p> -jpeg extension -</p> + +<p>jpeg extension</p> </div> @@ -853,9 +811,8 @@ jpeg extension <dt id="GIF_EX-constant" class="">GIF_EX = <div class="docstring"> <div class="discussion"> - <p> -gif extension -</p> + +<p>gif extension</p> </div> @@ -871,9 +828,8 @@ gif extension <dt id="PNG_EX-constant" class="">PNG_EX = <div class="docstring"> <div class="discussion"> - <p> -png extension -</p> + +<p>png extension</p> </div> @@ -889,9 +845,8 @@ png extension <dt id="RELS_EX-constant" class="">RELS_EX = <div class="docstring"> <div class="discussion"> - <p> -rels content type extension -</p> + +<p>rels content type extension</p> </div> @@ -907,9 +862,8 @@ rels content type extension <dt id="WORKBOOK_PN-constant" class="">WORKBOOK_PN = <div class="docstring"> <div class="discussion"> - <p> -workbook part -</p> + +<p>workbook part</p> </div> @@ -925,9 +879,8 @@ workbook part <dt id="STYLES_PN-constant" class="">STYLES_PN = <div class="docstring"> <div class="discussion"> - <p> -styles part -</p> + +<p>styles part</p> </div> @@ -943,9 +896,8 @@ styles part <dt id="APP_PN-constant" class="">APP_PN = <div class="docstring"> <div class="discussion"> - <p> -app part -</p> + +<p>app part</p> </div> @@ -961,9 +913,8 @@ app part <dt id="CORE_PN-constant" class="">CORE_PN = <div class="docstring"> <div class="discussion"> - <p> -core part -</p> + +<p>core part</p> </div> @@ -979,9 +930,8 @@ core part <dt id="CONTENT_TYPES_PN-constant" class="">CONTENT_TYPES_PN = <div class="docstring"> <div class="discussion"> - <p> -content types part -</p> + +<p>content types part</p> </div> @@ -997,9 +947,8 @@ content types part <dt id="RELS_PN-constant" class="">RELS_PN = <div class="docstring"> <div class="discussion"> - <p> -rels part -</p> + +<p>rels part</p> </div> @@ -1015,9 +964,8 @@ rels part <dt id="WORKBOOK_RELS_PN-constant" class="">WORKBOOK_RELS_PN = <div class="docstring"> <div class="discussion"> - <p> -workbook rels part -</p> + +<p>workbook rels part</p> </div> @@ -1033,9 +981,8 @@ workbook rels part <dt id="WORKSHEET_PN-constant" class="">WORKSHEET_PN = <div class="docstring"> <div class="discussion"> - <p> -worksheet part -</p> + +<p>worksheet part</p> </div> @@ -1051,9 +998,8 @@ worksheet part <dt id="WORKSHEET_RELS_PN-constant" class="">WORKSHEET_RELS_PN = <div class="docstring"> <div class="discussion"> - <p> -worksheet rels part -</p> + +<p>worksheet rels part</p> </div> @@ -1069,9 +1015,8 @@ worksheet rels part <dt id="DRAWING_PN-constant" class="">DRAWING_PN = <div class="docstring"> <div class="discussion"> - <p> -drawing part -</p> + +<p>drawing part</p> </div> @@ -1087,9 +1032,8 @@ drawing part <dt id="DRAWING_RELS_PN-constant" class="">DRAWING_RELS_PN = <div class="docstring"> <div class="discussion"> - <p> -drawing rels part -</p> + +<p>drawing rels part</p> </div> @@ -1105,9 +1049,8 @@ drawing rels part <dt id="CHART_PN-constant" class="">CHART_PN = <div class="docstring"> <div class="discussion"> - <p> -chart part -</p> + +<p>chart part</p> </div> @@ -1123,9 +1066,8 @@ chart part <dt id="IMAGE_PN-constant" class="">IMAGE_PN = <div class="docstring"> <div class="discussion"> - <p> -chart part -</p> + +<p>chart part</p> </div> @@ -1141,9 +1083,8 @@ chart part <dt id="APP_XSD-constant" class="">APP_XSD = <div class="docstring"> <div class="discussion"> - <p> -App validation schema -</p> + +<p>App validation schema</p> </div> @@ -1159,9 +1100,8 @@ App validation schema <dt id="CORE_XSD-constant" class="">CORE_XSD = <div class="docstring"> <div class="discussion"> - <p> -core validation schema -</p> + +<p>core validation schema</p> </div> @@ -1177,9 +1117,8 @@ core validation schema <dt id="CONTENT_TYPES_XSD-constant" class="">CONTENT_TYPES_XSD = <div class="docstring"> <div class="discussion"> - <p> -content types validation schema -</p> + +<p>content types validation schema</p> </div> @@ -1195,9 +1134,8 @@ content types validation schema <dt id="RELS_XSD-constant" class="">RELS_XSD = <div class="docstring"> <div class="discussion"> - <p> -rels validation schema -</p> + +<p>rels validation schema</p> </div> @@ -1213,9 +1151,8 @@ rels validation schema <dt id="SML_XSD-constant" class="">SML_XSD = <div class="docstring"> <div class="discussion"> - <p> -spreadsheetML validation schema -</p> + +<p>spreadsheetML validation schema</p> </div> @@ -1231,9 +1168,8 @@ spreadsheetML validation schema <dt id="DRAWING_XSD-constant" class="">DRAWING_XSD = <div class="docstring"> <div class="discussion"> - <p> -drawing validation schema -</p> + +<p>drawing validation schema</p> </div> @@ -1249,9 +1185,8 @@ drawing validation schema <dt id="NUM_FMT_PERCENT-constant" class="">NUM_FMT_PERCENT = <div class="docstring"> <div class="discussion"> - <p> -number format id for pecentage formatting using the default formatting id. -</p> + +<p>number format id for pecentage formatting using the default formatting id.</p> </div> @@ -1267,9 +1202,8 @@ number format id for pecentage formatting using the default formatting id. <dt id="NUM_FMT_YYYYMMDD-constant" class="">NUM_FMT_YYYYMMDD = <div class="docstring"> <div class="discussion"> - <p> -number format id for date format like 2011/11/13 -</p> + +<p>number format id for date format like 2011/11/13</p> </div> @@ -1285,9 +1219,8 @@ number format id for date format like 2011/11/13 <dt id="NUM_FMT_YYYYMMDDHHMMSS-constant" class="">NUM_FMT_YYYYMMDDHHMMSS = <div class="docstring"> <div class="discussion"> - <p> -number format id for time format the creates 2011/11/13 12:23:10 -</p> + +<p>number format id for time format the creates 2011/11/13 12:23:10</p> </div> @@ -1303,9 +1236,8 @@ number format id for time format the creates 2011/11/13 12:23:10 <dt id="STYLE_THIN_BORDER-constant" class="">STYLE_THIN_BORDER = <div class="docstring"> <div class="discussion"> - <p> -cellXfs id for thin borders around the cell -</p> + +<p>cellXfs id for thin borders around the cell</p> </div> @@ -1321,9 +1253,8 @@ cellXfs id for thin borders around the cell <dt id="ERR_RESTRICTION-constant" class="">ERR_RESTRICTION = <div class="docstring"> <div class="discussion"> - <p> -error messages RestrictionValidor -</p> + +<p>error messages RestrictionValidor</p> </div> @@ -1339,9 +1270,8 @@ error messages RestrictionValidor <dt id="ERR_TYPE-constant" class="">ERR_TYPE = <div class="docstring"> <div class="discussion"> - <p> -error message DataTypeValidator -</p> + +<p>error message DataTypeValidator</p> </div> @@ -1357,9 +1287,8 @@ error message DataTypeValidator <dt id="ERR_REGEX-constant" class="">ERR_REGEX = <div class="docstring"> <div class="discussion"> - <p> -error message for RegexValidator -</p> + +<p>error message for RegexValidator</p> </div> @@ -1403,9 +1332,8 @@ error message for RegexValidator - <span class="summary_desc"><div class='inline'><p> -determines the cell range for the items provided. -</p> + <span class="summary_desc"><div class='inline'> +<p>determines the cell range for the items provided.</p> </div></span> </li> @@ -1427,10 +1355,9 @@ determines the cell range for the items provided. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a form that can be evaluated as a boolean in an -xml document. -</p> + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a form that can be evaluated as a boolean in an +xml document.</p> </div></span> </li> @@ -1452,11 +1379,10 @@ xml document. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a valid content_type TABLE_CT, WORKBOOK_CT, + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a valid content_type TABLE_CT, WORKBOOK_CT, APP_CT, RELS_CT, STYLES_CT, XML_CT, WORKSHEET_CT, SHARED_STRINGS_CT, -CORE_CT, CHART_CT, DRAWING_CT are allowed. -</p> +CORE_CT, CHART_CT, DRAWING_CT are allowed.</p> </div></span> </li> @@ -1478,9 +1404,8 @@ CORE_CT, CHART_CT, DRAWING_CT are allowed. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a Float. -</p> + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a Float.</p> </div></span> </li> @@ -1502,9 +1427,8 @@ Requires that the value is a Float. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a gradient_type. -</p> + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a gradient_type.</p> </div></span> </li> @@ -1526,11 +1450,10 @@ Requires that the value is a gradient_type. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a valid horizontal_alignment :general, :left, + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a valid horizontal_alignment :general, :left, :center, :right, :fill, :justify, :centerContinuous, :distributed are -allowed. -</p> +allowed.</p> </div></span> </li> @@ -1552,9 +1475,8 @@ allowed. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a Fixnum or Integer. -</p> + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a Fixnum or Integer.</p> </div></span> </li> @@ -1576,9 +1498,8 @@ Requires that the value is a Fixnum or Integer. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is valid pattern type. -</p> + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is valid pattern type.</p> </div></span> </li> @@ -1600,11 +1521,10 @@ Requires that the value is valid pattern type. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a valid relationship_type XML_NS_R, TABLE_R, + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a valid relationship_type XML_NS_R, TABLE_R, WORKBOOK_R, WORKSHEET_R, APP_R, RELS_R, CORE_R, STYLES_R, CHART_R, -DRAWING_R are allowed. -</p> +DRAWING_R are allowed.</p> </div></span> </li> @@ -1626,9 +1546,8 @@ DRAWING_R are allowed. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a String. -</p> + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a String.</p> </div></span> </li> @@ -1650,8 +1569,8 @@ Requires that the value is a String. - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a valid table element type :wholeTable, + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a valid table element type :wholeTable, :headerRow, :totalRow, :firstColumn, :lastColumn, :firstRowStripe, :secondRowStripe, :firstColumnStripe, :secondColumnStripe, :firstHeaderCell, :lastHeaderCell, :firstTotalCell, :lastTotalCell, @@ -1659,8 +1578,7 @@ Requires that the value is a valid table element type :wholeTable, :firstSubtotalRow, :secondSubtotalRow, :thirdSubtotalRow, :blankRow, :firstColumnSubheading, :secondColumnSubheading, :thirdColumnSubheading, :firstRowSubheading, :secondRowSubheading, :thirdRowSubheading, -:pageFieldLabels, :pageFieldValues are allowed. -</p> +:pageFieldLabels, :pageFieldValues are allowed.</p> </div></span> </li> @@ -1682,10 +1600,9 @@ Requires that the value is a valid table element type :wholeTable, - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a Fixnum or Integer and is greater or equal to -0. -</p> + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a Fixnum or Integer and is greater or equal to +0.</p> </div></span> </li> @@ -1707,10 +1624,9 @@ Requires that the value is a Fixnum or Integer and is greater or equal to - <span class="summary_desc"><div class='inline'><p> -Requires that the value is a valid vertical_alignment :top, :center, -:bottom, :justify, :distributed are allowed. -</p> + <span class="summary_desc"><div class='inline'> +<p>Requires that the value is a valid vertical_alignment :top, :center, +:bottom, :justify, :distributed are allowed.</p> </div></span> </li> @@ -1734,9 +1650,8 @@ Requires that the value is a valid vertical_alignment :top, :center, </p><div class="docstring"> <div class="discussion"> - <p> -determines the cell range for the items provided -</p> + +<p>determines the cell range for the items provided</p> </div> @@ -1783,13 +1698,11 @@ determines the cell range for the items provided </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a form that can be evaluated as a boolean in an + +<p>Requires that the value is a form that can be evaluated as a boolean in an xml document. The value must be an instance of Fixnum, String, Integer, -Symbol, TrueClass or FalseClass and it must be one of 0, 1, -"true", "false", :true, :false, true, false, -"0", or "1" -</p> +Symbol, TrueClass or FalseClass and it must be one of 0, 1, “true”, +“false”, :true, :false, true, false, “0”, or “1”</p> </div> @@ -1808,9 +1721,8 @@ Symbol, TrueClass or FalseClass and it must be one of 0, 1, — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -1849,11 +1761,10 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a valid content_type TABLE_CT, WORKBOOK_CT, + +<p>Requires that the value is a valid content_type TABLE_CT, WORKBOOK_CT, APP_CT, RELS_CT, STYLES_CT, XML_CT, WORKSHEET_CT, SHARED_STRINGS_CT, -CORE_CT, CHART_CT, DRAWING_CT are allowed -</p> +CORE_CT, CHART_CT, DRAWING_CT are allowed</p> </div> @@ -1872,9 +1783,8 @@ CORE_CT, CHART_CT, DRAWING_CT are allowed — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -1913,9 +1823,8 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a Float -</p> + +<p>Requires that the value is a Float</p> </div> @@ -1934,9 +1843,8 @@ Requires that the value is a Float — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -1975,10 +1883,9 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a gradient_type. valid types are :linear and -:path -</p> + +<p>Requires that the value is a gradient_type. valid types are :linear and +:path</p> </div> @@ -1997,9 +1904,8 @@ Requires that the value is a gradient_type. valid types are :linear and — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -2038,11 +1944,10 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a valid horizontal_alignment :general, :left, + +<p>Requires that the value is a valid horizontal_alignment :general, :left, :center, :right, :fill, :justify, :centerContinuous, :distributed are -allowed -</p> +allowed</p> </div> @@ -2061,9 +1966,8 @@ allowed — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -2102,9 +2006,8 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a Fixnum or Integer -</p> + +<p>Requires that the value is a Fixnum or Integer</p> </div> @@ -2123,9 +2026,8 @@ Requires that the value is a Fixnum or Integer — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -2164,13 +2066,12 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is valid pattern type. valid pattern types must be + +<p>Requires that the value is valid pattern type. valid pattern types must be one of :none, :solid, :mediumGray, :darkGray, :lightGray, :darkHorizontal, :darkVertical, :darkDown, :darkUp, :darkGrid, :darkTrellis, :lightHorizontal, :lightVertical, :lightDown, :lightUp, :lightGrid, -:lightTrellis, :gray125, or :gray0625. -</p> +:lightTrellis, :gray125, or :gray0625.</p> </div> @@ -2189,9 +2090,8 @@ one of :none, :solid, :mediumGray, :darkGray, :lightGray, :darkHorizontal, — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -2232,11 +2132,10 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a valid relationship_type XML_NS_R, TABLE_R, + +<p>Requires that the value is a valid relationship_type XML_NS_R, TABLE_R, WORKBOOK_R, WORKSHEET_R, APP_R, RELS_R, CORE_R, STYLES_R, CHART_R, -DRAWING_R are allowed -</p> +DRAWING_R are allowed</p> </div> @@ -2255,9 +2154,8 @@ DRAWING_R are allowed — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -2296,9 +2194,8 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a String -</p> + +<p>Requires that the value is a String</p> </div> @@ -2317,9 +2214,8 @@ Requires that the value is a String — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -2358,8 +2254,8 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a valid table element type :wholeTable, + +<p>Requires that the value is a valid table element type :wholeTable, :headerRow, :totalRow, :firstColumn, :lastColumn, :firstRowStripe, :secondRowStripe, :firstColumnStripe, :secondColumnStripe, :firstHeaderCell, :lastHeaderCell, :firstTotalCell, :lastTotalCell, @@ -2367,8 +2263,7 @@ Requires that the value is a valid table element type :wholeTable, :firstSubtotalRow, :secondSubtotalRow, :thirdSubtotalRow, :blankRow, :firstColumnSubheading, :secondColumnSubheading, :thirdColumnSubheading, :firstRowSubheading, :secondRowSubheading, :thirdRowSubheading, -:pageFieldLabels, :pageFieldValues are allowed -</p> +:pageFieldLabels, :pageFieldValues are allowed</p> </div> @@ -2387,9 +2282,8 @@ Requires that the value is a valid table element type :wholeTable, — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -2428,9 +2322,8 @@ The value validated </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a Fixnum or Integer and is greater or equal to 0 -</p> + +<p>Requires that the value is a Fixnum or Integer and is greater or equal to 0</p> </div> @@ -2449,9 +2342,8 @@ Requires that the value is a Fixnum or Integer and is greater or equal to 0 — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -2469,9 +2361,8 @@ The value validated — - <div class='inline'><p> -true if the data is valid -</p> + <div class='inline'> +<p>true if the data is valid</p> </div> </li> @@ -2488,9 +2379,8 @@ true if the data is valid — - <div class='inline'><p> -raised if the value is not a Fixnum or Integer value greater or equal to 0 -</p> + <div class='inline'> +<p>raised if the value is not a Fixnum or Integer value greater or equal to 0</p> </div> </li> @@ -2528,10 +2418,9 @@ raised if the value is not a Fixnum or Integer value greater or equal to 0 </p><div class="docstring"> <div class="discussion"> - <p> -Requires that the value is a valid vertical_alignment :top, :center, -:bottom, :justify, :distributed are allowed -</p> + +<p>Requires that the value is a valid vertical_alignment :top, :center, +:bottom, :justify, :distributed are allowed</p> </div> @@ -2550,9 +2439,8 @@ Requires that the value is a valid vertical_alignment :top, :center, — - <div class='inline'><p> -The value validated -</p> + <div class='inline'> +<p>The value validated</p> </div> </li> @@ -2587,7 +2475,7 @@ The value validated </div> <div id="footer"> - Generated on Tue Nov 29 13:28:54 2011 by + Generated on Wed Nov 30 08:46:26 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/App.html b/doc/Axlsx/App.html index dcc7eb99..f7e59649 100644 --- a/doc/Axlsx/App.html +++ b/doc/Axlsx/App.html @@ -97,22 +97,19 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Support is not implemented for the following complex types: -</p> -<p> -HeadingPairs (VectorVariant), TitlesOfParts (VectorLpstr), HLinks -(VectorVariant), DigSig (DigSigBlob) -</p> + <div class='inline'> +<p>Support is not implemented for the following complex types:</p> + +<p>HeadingPairs (VectorVariant), TitlesOfParts (VectorLpstr), HLinks +(VectorVariant), DigSig (DigSigBlob)</p> </div> </div> -<p> -App represents the app.xml document. The attributes for this object are + +<p>App represents the app.xml document. The attributes for this object are primarily managed by the application the end user uses to edit the document. None of the attributes are required to serialize a valid xlsx -object. -</p> +object.</p> </div> @@ -151,9 +148,8 @@ object. - <span class="summary_desc"><div class='inline'><p> -The name of the application. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name of the application.</p> </div></span> </li> @@ -178,9 +174,8 @@ The name of the application. - <span class="summary_desc"><div class='inline'><p> -The version of the application. -</p> + <span class="summary_desc"><div class='inline'> +<p>The version of the application.</p> </div></span> </li> @@ -205,9 +200,8 @@ The version of the application. - <span class="summary_desc"><div class='inline'><p> -The number of characters in the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of characters in the document.</p> </div></span> </li> @@ -232,9 +226,8 @@ The number of characters in the document. - <span class="summary_desc"><div class='inline'><p> -The number of characters in the document including spaces. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of characters in the document including spaces.</p> </div></span> </li> @@ -259,9 +252,8 @@ The number of characters in the document including spaces. - <span class="summary_desc"><div class='inline'><p> -The name of the company generating the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name of the company generating the document.</p> </div></span> </li> @@ -286,9 +278,8 @@ The name of the company generating the document. - <span class="summary_desc"><div class='inline'><p> -Document security. -</p> + <span class="summary_desc"><div class='inline'> +<p>Document security.</p> </div></span> </li> @@ -313,9 +304,8 @@ Document security. - <span class="summary_desc"><div class='inline'><p> -The number of hidden slides. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of hidden slides.</p> </div></span> </li> @@ -340,9 +330,8 @@ The number of hidden slides. - <span class="summary_desc"><div class='inline'><p> -The base for hyper links in the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The base for hyper links in the document.</p> </div></span> </li> @@ -367,9 +356,8 @@ The base for hyper links in the document. - <span class="summary_desc"><div class='inline'><p> -Indicates that the hyper links in the document have been changed. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates that the hyper links in the document have been changed.</p> </div></span> </li> @@ -394,9 +382,8 @@ Indicates that the hyper links in the document have been changed. - <span class="summary_desc"><div class='inline'><p> -The number of lines in the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of lines in the document.</p> </div></span> </li> @@ -421,9 +408,8 @@ The number of lines in the document. - <span class="summary_desc"><div class='inline'><p> -The links in the document are up to date. -</p> + <span class="summary_desc"><div class='inline'> +<p>The links in the document are up to date.</p> </div></span> </li> @@ -448,9 +434,8 @@ The links in the document are up to date. - <span class="summary_desc"><div class='inline'><p> -The name of the manager for the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name of the manager for the document.</p> </div></span> </li> @@ -475,9 +460,8 @@ The name of the manager for the document. - <span class="summary_desc"><div class='inline'><p> -The total number multimedia clips. -</p> + <span class="summary_desc"><div class='inline'> +<p>The total number multimedia clips.</p> </div></span> </li> @@ -502,9 +486,8 @@ The total number multimedia clips. - <span class="summary_desc"><div class='inline'><p> -The number of slides that have notes. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of slides that have notes.</p> </div></span> </li> @@ -529,9 +512,8 @@ The number of slides that have notes. - <span class="summary_desc"><div class='inline'><p> -The number of pages in the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of pages in the document.</p> </div></span> </li> @@ -556,9 +538,8 @@ The number of pages in the document. - <span class="summary_desc"><div class='inline'><p> -The number of paragraphs in the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of paragraphs in the document.</p> </div></span> </li> @@ -583,9 +564,8 @@ The number of paragraphs in the document. - <span class="summary_desc"><div class='inline'><p> -The intended format of the presentation. -</p> + <span class="summary_desc"><div class='inline'> +<p>The intended format of the presentation.</p> </div></span> </li> @@ -610,9 +590,8 @@ The intended format of the presentation. - <span class="summary_desc"><div class='inline'><p> -The display mode for the document thumbnail. -</p> + <span class="summary_desc"><div class='inline'> +<p>The display mode for the document thumbnail.</p> </div></span> </li> @@ -637,9 +616,8 @@ The display mode for the document thumbnail. - <span class="summary_desc"><div class='inline'><p> -Indicates if the document is shared. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates if the document is shared.</p> </div></span> </li> @@ -664,9 +642,8 @@ Indicates if the document is shared. - <span class="summary_desc"><div class='inline'><p> -The number of slides in the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of slides in the document.</p> </div></span> </li> @@ -691,9 +668,8 @@ The number of slides in the document. - <span class="summary_desc"><div class='inline'><p> -The name of the document template. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name of the document template.</p> </div></span> </li> @@ -718,9 +694,8 @@ The name of the document template. - <span class="summary_desc"><div class='inline'><p> -The total amount of time spent editing. -</p> + <span class="summary_desc"><div class='inline'> +<p>The total amount of time spent editing.</p> </div></span> </li> @@ -745,9 +720,8 @@ The total amount of time spent editing. - <span class="summary_desc"><div class='inline'><p> -The number of words in the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of words in the document.</p> </div></span> </li> @@ -782,9 +756,8 @@ The number of words in the document. - <span class="summary_desc"><div class='inline'><p> -Creates an App object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates an App object.</p> </div></span> </li> @@ -806,9 +779,8 @@ Creates an App object. - <span class="summary_desc"><div class='inline'><p> -Generate an app.xml document. -</p> + <span class="summary_desc"><div class='inline'> +<p>Generate an app.xml document.</p> </div></span> </li> @@ -833,9 +805,8 @@ Generate an app.xml document. </p><div class="docstring"> <div class="discussion"> - <p> -The name of the application -</p> + +<p>The name of the application</p> </div> @@ -853,9 +824,8 @@ The name of the application — - <div class='inline'><p> -The name of the application -</p> + <div class='inline'> +<p>The name of the application</p> </div> </li> @@ -896,9 +866,8 @@ The name of the application </p><div class="docstring"> <div class="discussion"> - <p> -The version of the application. -</p> + +<p>The version of the application.</p> </div> @@ -916,9 +885,8 @@ The version of the application. — - <div class='inline'><p> -The version of the application. -</p> + <div class='inline'> +<p>The version of the application.</p> </div> </li> @@ -959,9 +927,8 @@ The version of the application. </p><div class="docstring"> <div class="discussion"> - <p> -The number of characters in the document. -</p> + +<p>The number of characters in the document.</p> </div> @@ -979,9 +946,8 @@ The number of characters in the document. — - <div class='inline'><p> -The number of characters in the document. -</p> + <div class='inline'> +<p>The number of characters in the document.</p> </div> </li> @@ -1022,9 +988,8 @@ The number of characters in the document. </p><div class="docstring"> <div class="discussion"> - <p> -The number of characters in the document including spaces. -</p> + +<p>The number of characters in the document including spaces.</p> </div> @@ -1042,9 +1007,8 @@ The number of characters in the document including spaces. — - <div class='inline'><p> -The number of characters in the document including spaces. -</p> + <div class='inline'> +<p>The number of characters in the document including spaces.</p> </div> </li> @@ -1085,9 +1049,8 @@ The number of characters in the document including spaces. </p><div class="docstring"> <div class="discussion"> - <p> -The name of the company generating the document. -</p> + +<p>The name of the company generating the document.</p> </div> @@ -1105,9 +1068,8 @@ The name of the company generating the document. — - <div class='inline'><p> -The name of the company generating the document. -</p> + <div class='inline'> +<p>The name of the company generating the document.</p> </div> </li> @@ -1148,9 +1110,8 @@ The name of the company generating the document. </p><div class="docstring"> <div class="discussion"> - <p> -Document security -</p> + +<p>Document security</p> </div> @@ -1168,9 +1129,8 @@ Document security — - <div class='inline'><p> -Document security -</p> + <div class='inline'> +<p>Document security</p> </div> </li> @@ -1211,9 +1171,8 @@ Document security </p><div class="docstring"> <div class="discussion"> - <p> -The number of hidden slides. -</p> + +<p>The number of hidden slides.</p> </div> @@ -1231,9 +1190,8 @@ The number of hidden slides. — - <div class='inline'><p> -The number of hidden slides. -</p> + <div class='inline'> +<p>The number of hidden slides.</p> </div> </li> @@ -1274,9 +1232,8 @@ The number of hidden slides. </p><div class="docstring"> <div class="discussion"> - <p> -The base for hyper links in the document. -</p> + +<p>The base for hyper links in the document.</p> </div> @@ -1294,9 +1251,8 @@ The base for hyper links in the document. — - <div class='inline'><p> -The base for hyper links in the document. -</p> + <div class='inline'> +<p>The base for hyper links in the document.</p> </div> </li> @@ -1337,9 +1293,8 @@ The base for hyper links in the document. </p><div class="docstring"> <div class="discussion"> - <p> -Indicates that the hyper links in the document have been changed. -</p> + +<p>Indicates that the hyper links in the document have been changed.</p> </div> @@ -1357,9 +1312,8 @@ Indicates that the hyper links in the document have been changed. — - <div class='inline'><p> -Indicates that the hyper links in the document have been changed. -</p> + <div class='inline'> +<p>Indicates that the hyper links in the document have been changed.</p> </div> </li> @@ -1400,9 +1354,8 @@ Indicates that the hyper links in the document have been changed. </p><div class="docstring"> <div class="discussion"> - <p> -The number of lines in the document. -</p> + +<p>The number of lines in the document.</p> </div> @@ -1420,9 +1373,8 @@ The number of lines in the document. — - <div class='inline'><p> -The number of lines in the document. -</p> + <div class='inline'> +<p>The number of lines in the document.</p> </div> </li> @@ -1463,9 +1415,8 @@ The number of lines in the document. </p><div class="docstring"> <div class="discussion"> - <p> -The links in the document are up to date. -</p> + +<p>The links in the document are up to date.</p> </div> @@ -1483,9 +1434,8 @@ The links in the document are up to date. — - <div class='inline'><p> -The links in the document are up to date. -</p> + <div class='inline'> +<p>The links in the document are up to date.</p> </div> </li> @@ -1526,9 +1476,8 @@ The links in the document are up to date. </p><div class="docstring"> <div class="discussion"> - <p> -The name of the manager for the document. -</p> + +<p>The name of the manager for the document.</p> </div> @@ -1546,9 +1495,8 @@ The name of the manager for the document. — - <div class='inline'><p> -The name of the manager for the document. -</p> + <div class='inline'> +<p>The name of the manager for the document.</p> </div> </li> @@ -1589,9 +1537,8 @@ The name of the manager for the document. </p><div class="docstring"> <div class="discussion"> - <p> -The total number multimedia clips -</p> + +<p>The total number multimedia clips</p> </div> @@ -1609,9 +1556,8 @@ The total number multimedia clips — - <div class='inline'><p> -The total number multimedia clips -</p> + <div class='inline'> +<p>The total number multimedia clips</p> </div> </li> @@ -1652,9 +1598,8 @@ The total number multimedia clips </p><div class="docstring"> <div class="discussion"> - <p> -The number of slides that have notes. -</p> + +<p>The number of slides that have notes.</p> </div> @@ -1672,9 +1617,8 @@ The number of slides that have notes. — - <div class='inline'><p> -The number of slides that have notes. -</p> + <div class='inline'> +<p>The number of slides that have notes.</p> </div> </li> @@ -1715,9 +1659,8 @@ The number of slides that have notes. </p><div class="docstring"> <div class="discussion"> - <p> -The number of pages in the document. -</p> + +<p>The number of pages in the document.</p> </div> @@ -1735,9 +1678,8 @@ The number of pages in the document. — - <div class='inline'><p> -The number of pages in the document. -</p> + <div class='inline'> +<p>The number of pages in the document.</p> </div> </li> @@ -1778,9 +1720,8 @@ The number of pages in the document. </p><div class="docstring"> <div class="discussion"> - <p> -The number of paragraphs in the document -</p> + +<p>The number of paragraphs in the document</p> </div> @@ -1798,9 +1739,8 @@ The number of paragraphs in the document — - <div class='inline'><p> -The number of paragraphs in the document -</p> + <div class='inline'> +<p>The number of paragraphs in the document</p> </div> </li> @@ -1841,9 +1781,8 @@ The number of paragraphs in the document </p><div class="docstring"> <div class="discussion"> - <p> -The intended format of the presentation. -</p> + +<p>The intended format of the presentation.</p> </div> @@ -1861,9 +1800,8 @@ The intended format of the presentation. — - <div class='inline'><p> -The intended format of the presentation. -</p> + <div class='inline'> +<p>The intended format of the presentation.</p> </div> </li> @@ -1904,9 +1842,8 @@ The intended format of the presentation. </p><div class="docstring"> <div class="discussion"> - <p> -The display mode for the document thumbnail. -</p> + +<p>The display mode for the document thumbnail.</p> </div> @@ -1924,9 +1861,8 @@ The display mode for the document thumbnail. — - <div class='inline'><p> -The display mode for the document thumbnail. -</p> + <div class='inline'> +<p>The display mode for the document thumbnail.</p> </div> </li> @@ -1967,9 +1903,8 @@ The display mode for the document thumbnail. </p><div class="docstring"> <div class="discussion"> - <p> -Indicates if the document is shared. -</p> + +<p>Indicates if the document is shared.</p> </div> @@ -1987,9 +1922,8 @@ Indicates if the document is shared. — - <div class='inline'><p> -Indicates if the document is shared. -</p> + <div class='inline'> +<p>Indicates if the document is shared.</p> </div> </li> @@ -2030,9 +1964,8 @@ Indicates if the document is shared. </p><div class="docstring"> <div class="discussion"> - <p> -The number of slides in the document. -</p> + +<p>The number of slides in the document.</p> </div> @@ -2050,9 +1983,8 @@ The number of slides in the document. — - <div class='inline'><p> -The number of slides in the document. -</p> + <div class='inline'> +<p>The number of slides in the document.</p> </div> </li> @@ -2093,9 +2025,8 @@ The number of slides in the document. </p><div class="docstring"> <div class="discussion"> - <p> -The name of the document template. -</p> + +<p>The name of the document template.</p> </div> @@ -2113,9 +2044,8 @@ The name of the document template. — - <div class='inline'><p> -The name of the document template. -</p> + <div class='inline'> +<p>The name of the document template.</p> </div> </li> @@ -2156,9 +2086,8 @@ The name of the document template. </p><div class="docstring"> <div class="discussion"> - <p> -The total amount of time spent editing. -</p> + +<p>The total amount of time spent editing.</p> </div> @@ -2176,9 +2105,8 @@ The total amount of time spent editing. — - <div class='inline'><p> -The total amount of time spent editing. -</p> + <div class='inline'> +<p>The total amount of time spent editing.</p> </div> </li> @@ -2219,9 +2147,8 @@ The total amount of time spent editing. </p><div class="docstring"> <div class="discussion"> - <p> -The number of words in the document. -</p> + +<p>The number of words in the document.</p> </div> @@ -2239,9 +2166,8 @@ The number of words in the document. — - <div class='inline'><p> -The number of words in the document. -</p> + <div class='inline'> +<p>The number of words in the document.</p> </div> </li> @@ -2286,9 +2212,8 @@ The number of words in the document. </p><div class="docstring"> <div class="discussion"> - <p> -Creates an App object -</p> + +<p>Creates an App object</p> </div> @@ -2309,9 +2234,8 @@ Creates an App object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -2561,9 +2485,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -Generate an app.xml document -</p> + +<p>Generate an app.xml document</p> </div> @@ -2581,9 +2504,8 @@ Generate an app.xml document — - <div class='inline'><p> -The document as a string -</p> + <div class='inline'> +<p>The document as a string</p> </div> </li> @@ -2631,7 +2553,7 @@ The document as a string </div> <div id="footer"> - Generated on Tue Nov 29 13:28:52 2011 by + Generated on Wed Nov 30 08:46:32 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Axis.html b/doc/Axlsx/Axis.html index a7c7b2d3..11b4f2bc 100644 --- a/doc/Axlsx/Axis.html +++ b/doc/Axlsx/Axis.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -the access class defines common properties and values for a chart axis. -</p> + +<p>the access class defines common properties and values for a chart axis.</p> </div> @@ -132,9 +131,8 @@ the access class defines common properties and values for a chart axis. - <span class="summary_desc"><div class='inline'><p> -the id of the axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>the id of the axis.</p> </div></span> </li> @@ -159,9 +157,8 @@ the id of the axis. - <span class="summary_desc"><div class='inline'><p> -The position of the axis must be one of [:l, :r, :t, :b]. -</p> + <span class="summary_desc"><div class='inline'> +<p>The position of the axis must be one of [:l, :r, :t, :b].</p> </div></span> </li> @@ -186,9 +183,8 @@ The position of the axis must be one of [:l, :r, :t, :b]. - <span class="summary_desc"><div class='inline'><p> -The perpendicular axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>The perpendicular axis.</p> </div></span> </li> @@ -213,10 +209,9 @@ The perpendicular axis. - <span class="summary_desc"><div class='inline'><p> -specifies how the perpendicular axis is crossed must be one of [:autoZero, -:min, :max]. -</p> + <span class="summary_desc"><div class='inline'> +<p>specifies how the perpendicular axis is crossed must be one of [:autoZero, +:min, :max].</p> </div></span> </li> @@ -241,9 +236,8 @@ specifies how the perpendicular axis is crossed must be one of [:autoZero, - <span class="summary_desc"><div class='inline'><p> -The number format format code for this axis default :General. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number format format code for this axis default :General.</p> </div></span> </li> @@ -268,9 +262,8 @@ The number format format code for this axis default :General. - <span class="summary_desc"><div class='inline'><p> -The scaling of the axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>The scaling of the axis.</p> </div></span> </li> @@ -295,9 +288,8 @@ The scaling of the axis. - <span class="summary_desc"><div class='inline'><p> -the position of the tick labels must be one of [:nextTo, :high, :low]. -</p> + <span class="summary_desc"><div class='inline'> +<p>the position of the tick labels must be one of [:nextTo, :high, :low].</p> </div></span> </li> @@ -334,9 +326,8 @@ the position of the tick labels must be one of [:nextTo, :high, :low]. - <span class="summary_desc"><div class='inline'><p> -Creates an Axis object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates an Axis object.</p> </div></span> </li> @@ -358,9 +349,8 @@ Creates an Axis object. - <span class="summary_desc"><div class='inline'><p> -Serializes the common axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the common axis.</p> </div></span> </li> @@ -381,9 +371,8 @@ Serializes the common axis. </p><div class="docstring"> <div class="discussion"> - <p> -Creates an Axis object -</p> + +<p>Creates an Axis object</p> </div> @@ -402,9 +391,8 @@ Creates an Axis object — - <div class='inline'><p> -the id of this axis -</p> + <div class='inline'> +<p>the id of this axis</p> </div> </li> @@ -419,9 +407,8 @@ the id of this axis — - <div class='inline'><p> -the id of the perpendicular axis -</p> + <div class='inline'> +<p>the id of the perpendicular axis</p> </div> </li> @@ -438,9 +425,8 @@ the id of the perpendicular axis — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -498,9 +484,8 @@ a customizable set of options — - <div class='inline'><p> -If axId or crossAx are not unsigned integers -</p> + <div class='inline'> +<p>If axId or crossAx are not unsigned integers</p> </div> </li> @@ -570,9 +555,8 @@ If axId or crossAx are not unsigned integers </p><div class="docstring"> <div class="discussion"> - <p> -the id of the axis. -</p> + +<p>the id of the axis.</p> </div> @@ -627,9 +611,8 @@ the id of the axis. </p><div class="docstring"> <div class="discussion"> - <p> -The position of the axis must be one of [:l, :r, :t, :b] -</p> + +<p>The position of the axis must be one of [:l, :r, :t, :b]</p> </div> @@ -684,9 +667,8 @@ The position of the axis must be one of [:l, :r, :t, :b] </p><div class="docstring"> <div class="discussion"> - <p> -The perpendicular axis -</p> + +<p>The perpendicular axis</p> </div> @@ -741,10 +723,9 @@ The perpendicular axis </p><div class="docstring"> <div class="discussion"> - <p> -specifies how the perpendicular axis is crossed must be one of [:autoZero, -:min, :max] -</p> + +<p>specifies how the perpendicular axis is crossed must be one of [:autoZero, +:min, :max]</p> </div> @@ -799,9 +780,8 @@ specifies how the perpendicular axis is crossed must be one of [:autoZero, </p><div class="docstring"> <div class="discussion"> - <p> -The number format format code for this axis default :General -</p> + +<p>The number format format code for this axis default :General</p> </div> @@ -856,9 +836,8 @@ The number format format code for this axis default :General </p><div class="docstring"> <div class="discussion"> - <p> -The scaling of the axis -</p> + +<p>The scaling of the axis</p> </div> @@ -920,9 +899,8 @@ The scaling of the axis </p><div class="docstring"> <div class="discussion"> - <p> -the position of the tick labels must be one of [:nextTo, :high, :low] -</p> + +<p>the position of the tick labels must be one of [:nextTo, :high, :low]</p> </div> @@ -981,9 +959,8 @@ the position of the tick labels must be one of [:nextTo, :high, :low] </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the common axis -</p> + +<p>Serializes the common axis</p> </div> @@ -1002,9 +979,8 @@ Serializes the common axis — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -1066,7 +1042,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:44 2011 by + Generated on Wed Nov 30 08:46:25 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Bar3DChart.html b/doc/Axlsx/Bar3DChart.html index 43c620c9..fb338d09 100644 --- a/doc/Axlsx/Bar3DChart.html +++ b/doc/Axlsx/Bar3DChart.html @@ -96,10 +96,9 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The Bar3DChart is a three dimentional barchart (who would have guessed?) -that you can add to your worksheet. -</p> + +<p>The Bar3DChart is a three dimentional barchart (who would have guessed?) +that you can add to your worksheet.</p> </div> @@ -128,9 +127,8 @@ that you can add to your worksheet. <dt id="GAP_AMOUNT_PERCENT-constant" class="">GAP_AMOUNT_PERCENT = <div class="docstring"> <div class="discussion"> - <p> -validation regex for gap amount percent -</p> + +<p>validation regex for gap amount percent</p> </div> @@ -173,9 +171,8 @@ validation regex for gap amount percent - <span class="summary_desc"><div class='inline'><p> -The direction of the bars in the chart must be one of [:bar, :col]. -</p> + <span class="summary_desc"><div class='inline'> +<p>The direction of the bars in the chart must be one of [:bar, :col].</p> </div></span> </li> @@ -200,9 +197,8 @@ The direction of the bars in the chart must be one of [:bar, :col]. - <span class="summary_desc"><div class='inline'><p> -the category axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>the category axis.</p> </div></span> </li> @@ -227,10 +223,9 @@ the category axis. - <span class="summary_desc"><div class='inline'><p> -space between bar or column clusters, as a percentage of the bar or column -width. -</p> + <span class="summary_desc"><div class='inline'> +<p>space between bar or column clusters, as a percentage of the bar or column +width.</p> </div></span> </li> @@ -255,10 +250,9 @@ width. - <span class="summary_desc"><div class='inline'><p> -space between bar or column clusters, as a percentage of the bar or column -width. -</p> + <span class="summary_desc"><div class='inline'> +<p>space between bar or column clusters, as a percentage of the bar or column +width.</p> </div></span> </li> @@ -283,9 +277,8 @@ width. - <span class="summary_desc"><div class='inline'><p> -grouping for a column, line, or area chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>grouping for a column, line, or area chart.</p> </div></span> </li> @@ -310,10 +303,9 @@ grouping for a column, line, or area chart. - <span class="summary_desc"><div class='inline'><p> -The shabe of the bars or columns must be one of [:cone, :coneToMax, :box, -:cylinder, :pyramid, :pyramidToMax]. -</p> + <span class="summary_desc"><div class='inline'> +<p>The shabe of the bars or columns must be one of [:cone, :coneToMax, :box, +:cylinder, :pyramid, :pyramidToMax].</p> </div></span> </li> @@ -338,9 +330,8 @@ The shabe of the bars or columns must be one of [:cone, :coneToMax, :box, - <span class="summary_desc"><div class='inline'><p> -the valueaxis. -</p> + <span class="summary_desc"><div class='inline'> +<p>the valueaxis.</p> </div></span> </li> @@ -385,9 +376,8 @@ the valueaxis. - <span class="summary_desc"><div class='inline'><p> -Creates a new bar chart object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new bar chart object.</p> </div></span> </li> @@ -409,9 +399,8 @@ Creates a new bar chart object. - <span class="summary_desc"><div class='inline'><p> -Serializes the bar chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the bar chart.</p> </div></span> </li> @@ -442,9 +431,8 @@ Serializes the bar chart. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new bar chart object -</p> + +<p>Creates a new bar chart object</p> </div> @@ -463,9 +451,8 @@ Creates a new bar chart object — - <div class='inline'><p> -The workbook that owns this chart. -</p> + <div class='inline'> +<p>The workbook that owns this chart.</p> </div> </li> @@ -482,9 +469,8 @@ The workbook that owns this chart. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -686,9 +672,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The direction of the bars in the chart must be one of [:bar, :col] -</p> + +<p>The direction of the bars in the chart must be one of [:bar, :col]</p> </div> @@ -743,9 +728,8 @@ The direction of the bars in the chart must be one of [:bar, :col] </p><div class="docstring"> <div class="discussion"> - <p> -the category axis -</p> + +<p>the category axis</p> </div> @@ -800,10 +784,9 @@ the category axis </p><div class="docstring"> <div class="discussion"> - <p> -space between bar or column clusters, as a percentage of the bar or column -width. -</p> + +<p>space between bar or column clusters, as a percentage of the bar or column +width.</p> </div> @@ -858,10 +841,9 @@ width. </p><div class="docstring"> <div class="discussion"> - <p> -space between bar or column clusters, as a percentage of the bar or column -width. -</p> + +<p>space between bar or column clusters, as a percentage of the bar or column +width.</p> </div> @@ -916,10 +898,9 @@ width. </p><div class="docstring"> <div class="discussion"> - <p> -grouping for a column, line, or area chart. must be one of -[:percentStacked, :clustered, :standard, :stacked] -</p> + +<p>grouping for a column, line, or area chart. must be one of +[:percentStacked, :clustered, :standard, :stacked]</p> </div> @@ -974,10 +955,9 @@ grouping for a column, line, or area chart. must be one of </p><div class="docstring"> <div class="discussion"> - <p> -The shabe of the bars or columns must be one of [:cone, :coneToMax, :box, -:cylinder, :pyramid, :pyramidToMax] -</p> + +<p>The shabe of the bars or columns must be one of [:cone, :coneToMax, :box, +:cylinder, :pyramid, :pyramidToMax]</p> </div> @@ -1032,9 +1012,8 @@ The shabe of the bars or columns must be one of [:cone, :coneToMax, :box, </p><div class="docstring"> <div class="discussion"> - <p> -the valueaxis -</p> + +<p>the valueaxis</p> </div> @@ -1093,9 +1072,8 @@ the valueaxis </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the bar chart -</p> + +<p>Serializes the bar chart</p> </div> @@ -1173,7 +1151,7 @@ Serializes the bar chart </div> <div id="footer"> - Generated on Tue Nov 29 13:29:00 2011 by + Generated on Wed Nov 30 08:46:31 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/BarSeries.html b/doc/Axlsx/BarSeries.html index 283f7c6d..30362718 100644 --- a/doc/Axlsx/BarSeries.html +++ b/doc/Axlsx/BarSeries.html @@ -99,15 +99,13 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage series is to use Chart#add_series -</p> + <div class='inline'> +<p>The recommended way to manage series is to use Chart#add_series</p> </div> </div> -<p> -A BarSeries defines the title, data and labels for bar charts -</p> + +<p>A BarSeries defines the title, data and labels for bar charts</p> </div> @@ -152,9 +150,8 @@ A BarSeries defines the title, data and labels for bar charts - <span class="summary_desc"><div class='inline'><p> -The data for this series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The data for this series.</p> </div></span> </li> @@ -179,9 +176,8 @@ The data for this series. - <span class="summary_desc"><div class='inline'><p> -The labels for this series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The labels for this series.</p> </div></span> </li> @@ -206,10 +202,9 @@ The labels for this series. - <span class="summary_desc"><div class='inline'><p> -The shabe of the bars or columns must be one of [:percentStacked, -:clustered, :standard, :stacked]. -</p> + <span class="summary_desc"><div class='inline'> +<p>The shabe of the bars or columns must be one of [:percentStacked, +:clustered, :standard, :stacked].</p> </div></span> </li> @@ -254,9 +249,8 @@ The shabe of the bars or columns must be one of [:percentStacked, - <span class="summary_desc"><div class='inline'><p> -Creates a new series. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new series.</p> </div></span> </li> @@ -278,9 +272,8 @@ Creates a new series. - <span class="summary_desc"><div class='inline'><p> -Serializes the series. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the series.</p> </div></span> </li> @@ -311,9 +304,8 @@ Serializes the series. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new series -</p> + +<p>Creates a new series</p> </div> @@ -345,9 +337,8 @@ Creates a new series — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -447,9 +438,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The data for this series. -</p> + +<p>The data for this series.</p> </div> @@ -504,9 +494,8 @@ The data for this series. </p><div class="docstring"> <div class="discussion"> - <p> -The labels for this series. -</p> + +<p>The labels for this series.</p> </div> @@ -561,10 +550,9 @@ The labels for this series. </p><div class="docstring"> <div class="discussion"> - <p> -The shabe of the bars or columns must be one of [:percentStacked, -:clustered, :standard, :stacked] -</p> + +<p>The shabe of the bars or columns must be one of [:percentStacked, +:clustered, :standard, :stacked]</p> </div> @@ -623,9 +611,8 @@ The shabe of the bars or columns must be one of [:percentStacked, </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the series -</p> + +<p>Serializes the series</p> </div> @@ -644,9 +631,8 @@ Serializes the series — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -702,7 +688,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:59 2011 by + Generated on Wed Nov 30 08:46:30 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Border.html b/doc/Axlsx/Border.html index 8db0c7f0..71a33a92 100644 --- a/doc/Axlsx/Border.html +++ b/doc/Axlsx/Border.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -This class details a border used in Office Open XML spreadsheet styles. -</p> + +<p>This class details a border used in Office Open XML spreadsheet styles.</p> </div> @@ -128,11 +127,10 @@ This class details a border used in Office Open XML spreadsheet styles. - <span class="summary_desc"><div class='inline'><p> -The diagonal down property for the border that indicates if the border + <span class="summary_desc"><div class='inline'> +<p>The diagonal down property for the border that indicates if the border should include a diagonal line from the top left to the top right of the -cell. -</p> +cell.</p> </div></span> </li> @@ -157,10 +155,9 @@ cell. - <span class="summary_desc"><div class='inline'><p> -The diagonal up property for the border that indicates if the border should -include a diagonal line from the bottom left to the top right of the cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>The diagonal up property for the border that indicates if the border should +include a diagonal line from the bottom left to the top right of the cell.</p> </div></span> </li> @@ -185,11 +182,10 @@ include a diagonal line from the bottom left to the top right of the cell. - <span class="summary_desc"><div class='inline'><p> -The outline property for the border indicating that top, left, right and + <span class="summary_desc"><div class='inline'> +<p>The outline property for the border indicating that top, left, right and bottom borders should only be applied to the outside border of a range of -cells. -</p> +cells.</p> </div></span> </li> @@ -214,9 +210,8 @@ cells. - <span class="summary_desc"><div class='inline'><p> -A list of BorderPr objects for this border. -</p> + <span class="summary_desc"><div class='inline'> +<p>A list of BorderPr objects for this border.</p> </div></span> </li> @@ -253,9 +248,8 @@ A list of BorderPr objects for this border. - <span class="summary_desc"><div class='inline'><p> -Creates a new Border object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Border object.</p> </div></span> </li> @@ -277,9 +271,8 @@ Creates a new Border object. - <span class="summary_desc"><div class='inline'><p> -Serializes the border element. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the border element.</p> </div></span> </li> @@ -300,9 +293,8 @@ Serializes the border element. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Border object -</p> + +<p>Creates a new Border object</p> </div> @@ -312,9 +304,8 @@ Creates a new Border object <div class="examples"> <h3>Examples:</h3> - <h4><div class='inline'><p> -Making a border -</p> + <h4><div class='inline'> +<p>Making a border</p> </div></h4> <pre class="example code"><span class='p identifier id'>p</span> <span class='assign token'>=</span> <span class='Package constant id'>Package</span><span class='dot token'>.</span><span class='new identifier id'>new</span> <span class='red_border identifier id'>red_border</span> <span class='assign token'>=</span> <span class='Border constant id'>Border</span><span class='dot token'>.</span><span class='new identifier id'>new</span> @@ -343,9 +334,8 @@ Making a border — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -434,11 +424,10 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The diagonal down property for the border that indicates if the border + +<p>The diagonal down property for the border that indicates if the border should include a diagonal line from the top left to the top right of the -cell. -</p> +cell.</p> </div> @@ -456,11 +445,10 @@ cell. — - <div class='inline'><p> -The diagonal down property for the border that indicates if the border + <div class='inline'> +<p>The diagonal down property for the border that indicates if the border should include a diagonal line from the top left to the top right of the -cell. -</p> +cell.</p> </div> </li> @@ -501,10 +489,9 @@ cell. </p><div class="docstring"> <div class="discussion"> - <p> -The diagonal up property for the border that indicates if the border should -include a diagonal line from the bottom left to the top right of the cell. -</p> + +<p>The diagonal up property for the border that indicates if the border should +include a diagonal line from the bottom left to the top right of the cell.</p> </div> @@ -522,10 +509,9 @@ include a diagonal line from the bottom left to the top right of the cell. — - <div class='inline'><p> -The diagonal up property for the border that indicates if the border should -include a diagonal line from the bottom left to the top right of the cell. -</p> + <div class='inline'> +<p>The diagonal up property for the border that indicates if the border should +include a diagonal line from the bottom left to the top right of the cell.</p> </div> </li> @@ -566,11 +552,10 @@ include a diagonal line from the bottom left to the top right of the cell. </p><div class="docstring"> <div class="discussion"> - <p> -The outline property for the border indicating that top, left, right and + +<p>The outline property for the border indicating that top, left, right and bottom borders should only be applied to the outside border of a range of -cells. -</p> +cells.</p> </div> @@ -588,11 +573,10 @@ cells. — - <div class='inline'><p> -The outline property for the border indicating that top, left, right and + <div class='inline'> +<p>The outline property for the border indicating that top, left, right and bottom borders should only be applied to the outside border of a range of -cells. -</p> +cells.</p> </div> </li> @@ -633,9 +617,8 @@ cells. </p><div class="docstring"> <div class="discussion"> - <p> -A list of BorderPr objects for this border. -</p> + +<p>A list of BorderPr objects for this border.</p> </div> @@ -653,9 +636,8 @@ A list of BorderPr objects for this border. — - <div class='inline'><p> -A list of BorderPr objects for this border. -</p> + <div class='inline'> +<p>A list of BorderPr objects for this border.</p> </div> </li> @@ -700,9 +682,8 @@ A list of BorderPr objects for this border. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the border element -</p> + +<p>Serializes the border element</p> </div> @@ -721,9 +702,8 @@ Serializes the border element — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -770,7 +750,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:46 2011 by + Generated on Wed Nov 30 08:46:38 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/BorderPr.html b/doc/Axlsx/BorderPr.html index 9d7ac897..6daa67a9 100644 --- a/doc/Axlsx/BorderPr.html +++ b/doc/Axlsx/BorderPr.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -A border part. -</p> + +<p>A border part.</p> </div> @@ -128,9 +127,8 @@ A border part. - <span class="summary_desc"><div class='inline'><p> -The color of this border part. -</p> + <span class="summary_desc"><div class='inline'> +<p>The color of this border part.</p> </div></span> </li> @@ -155,9 +153,8 @@ The color of this border part. - <span class="summary_desc"><div class='inline'><p> -The name of this border part. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name of this border part.</p> </div></span> </li> @@ -182,9 +179,8 @@ The name of this border part. - <span class="summary_desc"><div class='inline'><p> -The syle of this border part. -</p> + <span class="summary_desc"><div class='inline'> +<p>The syle of this border part.</p> </div></span> </li> @@ -221,9 +217,8 @@ The syle of this border part. - <span class="summary_desc"><div class='inline'><p> -Creates a new Border Part Object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Border Part Object.</p> </div></span> </li> @@ -245,9 +240,8 @@ Creates a new Border Part Object. - <span class="summary_desc"><div class='inline'><p> -Serializes the border part. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the border part.</p> </div></span> </li> @@ -268,9 +262,8 @@ Serializes the border part. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Border Part Object -</p> + +<p>Creates a new Border Part Object</p> </div> @@ -291,9 +284,8 @@ Creates a new Border Part Object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -387,9 +379,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The color of this border part. -</p> + +<p>The color of this border part.</p> </div> @@ -407,9 +398,8 @@ The color of this border part. — - <div class='inline'><p> -The color of this border part. -</p> + <div class='inline'> +<p>The color of this border part.</p> </div> </li> @@ -453,26 +443,24 @@ The color of this border part. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The following are allowed -</p> -<pre class="code"> - <span class='symbol val'>:start</span> - <span class='symbol val'>:end</span> - <span class='symbol val'>:left</span> - <span class='symbol val'>:right</span> - <span class='symbol val'>:top</span> - <span class='symbol val'>:bottom</span> - <span class='symbol val'>:diagonal</span> - <span class='symbol val'>:vertical</span> - <span class='symbol val'>:horizontal</span> + <div class='inline'> +<p>The following are allowed</p> + +<pre class="code"><span class='symbol val'>:start</span> +<span class='symbol val'>:end</span> +<span class='symbol val'>:left</span> +<span class='symbol val'>:right</span> +<span class='symbol val'>:top</span> +<span class='symbol val'>:bottom</span> +<span class='symbol val'>:diagonal</span> +<span class='symbol val'>:vertical</span> +<span class='symbol val'>:horizontal</span> </pre> </div> </div> -<p> -The name of this border part -</p> + +<p>The name of this border part</p> </div> @@ -490,9 +478,8 @@ The name of this border part — - <div class='inline'><p> -The name of this border part -</p> + <div class='inline'> +<p>The name of this border part</p> </div> </li> @@ -536,31 +523,29 @@ The name of this border part <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The following are allowed -</p> -<pre class="code"> - <span class='symbol val'>:none</span> - <span class='symbol val'>:thin</span> - <span class='symbol val'>:medium</span> - <span class='symbol val'>:dashed</span> - <span class='symbol val'>:dotted</span> - <span class='symbol val'>:thick</span> - <span class='symbol val'>:double</span> - <span class='symbol val'>:hair</span> - <span class='symbol val'>:mediumDashed</span> - <span class='symbol val'>:dashDot</span> - <span class='symbol val'>:mediumDashDot</span> - <span class='symbol val'>:dashDotDot</span> - <span class='symbol val'>:mediumDashDotDot</span> - <span class='symbol val'>:slantDashDot</span> + <div class='inline'> +<p>The following are allowed</p> + +<pre class="code"><span class='symbol val'>:none</span> +<span class='symbol val'>:thin</span> +<span class='symbol val'>:medium</span> +<span class='symbol val'>:dashed</span> +<span class='symbol val'>:dotted</span> +<span class='symbol val'>:thick</span> +<span class='symbol val'>:double</span> +<span class='symbol val'>:hair</span> +<span class='symbol val'>:mediumDashed</span> +<span class='symbol val'>:dashDot</span> +<span class='symbol val'>:mediumDashDot</span> +<span class='symbol val'>:dashDotDot</span> +<span class='symbol val'>:mediumDashDotDot</span> +<span class='symbol val'>:slantDashDot</span> </pre> </div> </div> -<p> -The syle of this border part. -</p> + +<p>The syle of this border part.</p> </div> @@ -578,9 +563,8 @@ The syle of this border part. — - <div class='inline'><p> -The syle of this border part. -</p> + <div class='inline'> +<p>The syle of this border part.</p> </div> </li> @@ -625,9 +609,8 @@ The syle of this border part. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the border part -</p> + +<p>Serializes the border part</p> </div> @@ -646,9 +629,8 @@ Serializes the border part — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -700,7 +682,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:29:01 2011 by + Generated on Wed Nov 30 08:46:32 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/CatAxis.html b/doc/Axlsx/CatAxis.html index bad9fa72..51fbc5ab 100644 --- a/doc/Axlsx/CatAxis.html +++ b/doc/Axlsx/CatAxis.html @@ -96,9 +96,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -A CatAxis object defines a chart category axis -</p> + +<p>A CatAxis object defines a chart category axis</p> </div> @@ -114,9 +113,8 @@ A CatAxis object defines a chart category axis <dt id="LBL_OFFSET_REGEX-constant" class="">LBL_OFFSET_REGEX = <div class="docstring"> <div class="discussion"> - <p> -regex for validating label offset -</p> + +<p>regex for validating label offset</p> </div> @@ -159,10 +157,9 @@ regex for validating label offset - <span class="summary_desc"><div class='inline'><p> -From the docs: This element specifies that this axis is a date or text axis -based on the data that is used for the axis labels, not a specific choice. -</p> + <span class="summary_desc"><div class='inline'> +<p>From the docs: This element specifies that this axis is a date or text axis +based on the data that is used for the axis labels, not a specific choice.</p> </div></span> </li> @@ -187,10 +184,9 @@ based on the data that is used for the axis labels, not a specific choice. - <span class="summary_desc"><div class='inline'><p> -specifies how the perpendicular axis is crossed must be one of [:ctr, :l, -:r]. -</p> + <span class="summary_desc"><div class='inline'> +<p>specifies how the perpendicular axis is crossed must be one of [:ctr, :l, +:r].</p> </div></span> </li> @@ -215,9 +211,8 @@ specifies how the perpendicular axis is crossed must be one of [:ctr, :l, - <span class="summary_desc"><div class='inline'><p> -The offset of the labels must be between a string between 0 and 1000. -</p> + <span class="summary_desc"><div class='inline'> +<p>The offset of the labels must be between a string between 0 and 1000.</p> </div></span> </li> @@ -262,9 +257,8 @@ The offset of the labels must be between a string between 0 and 1000. - <span class="summary_desc"><div class='inline'><p> -Creates a new CatAxis object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new CatAxis object.</p> </div></span> </li> @@ -286,9 +280,8 @@ Creates a new CatAxis object. - <span class="summary_desc"><div class='inline'><p> -Serializes the category axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the category axis.</p> </div></span> </li> @@ -314,9 +307,8 @@ Serializes the category axis. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new CatAxis object -</p> + +<p>Creates a new CatAxis object</p> </div> @@ -335,9 +327,8 @@ Creates a new CatAxis object — - <div class='inline'><p> -the id of this axis. Inherited -</p> + <div class='inline'> +<p>the id of this axis. Inherited</p> </div> </li> @@ -352,9 +343,8 @@ the id of this axis. Inherited — - <div class='inline'><p> -the id of the perpendicular axis. Inherited -</p> + <div class='inline'> +<p>the id of the perpendicular axis. Inherited</p> </div> </li> @@ -371,9 +361,8 @@ the id of the perpendicular axis. Inherited — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -396,9 +385,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -Inherited -</p> + — <div class='inline'> +<p>Inherited</p> </div> </li> @@ -408,9 +396,8 @@ Inherited <span class="default"> </span> - — <div class='inline'><p> -Inherited -</p> + — <div class='inline'> +<p>Inherited</p> </div> </li> @@ -420,9 +407,8 @@ Inherited <span class="default"> </span> - — <div class='inline'><p> -Inherited -</p> + — <div class='inline'> +<p>Inherited</p> </div> </li> @@ -502,10 +488,9 @@ Inherited </p><div class="docstring"> <div class="discussion"> - <p> -From the docs: This element specifies that this axis is a date or text axis -based on the data that is used for the axis labels, not a specific choice. -</p> + +<p>From the docs: This element specifies that this axis is a date or text axis +based on the data that is used for the axis labels, not a specific choice.</p> </div> @@ -560,10 +545,9 @@ based on the data that is used for the axis labels, not a specific choice. </p><div class="docstring"> <div class="discussion"> - <p> -specifies how the perpendicular axis is crossed must be one of [:ctr, :l, -:r] -</p> + +<p>specifies how the perpendicular axis is crossed must be one of [:ctr, :l, +:r]</p> </div> @@ -618,9 +602,8 @@ specifies how the perpendicular axis is crossed must be one of [:ctr, :l, </p><div class="docstring"> <div class="discussion"> - <p> -The offset of the labels must be between a string between 0 and 1000 -</p> + +<p>The offset of the labels must be between a string between 0 and 1000</p> </div> @@ -679,9 +662,8 @@ The offset of the labels must be between a string between 0 and 1000 </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the category axis -</p> + +<p>Serializes the category axis</p> </div> @@ -700,9 +682,8 @@ Serializes the category axis — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -760,7 +741,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:42 2011 by + Generated on Wed Nov 30 08:46:34 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/CatAxisData.html b/doc/Axlsx/CatAxisData.html index b66657e2..7530a7c6 100644 --- a/doc/Axlsx/CatAxisData.html +++ b/doc/Axlsx/CatAxisData.html @@ -96,9 +96,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The CatAxisData class serializes the category axis data for a chart -</p> + +<p>The CatAxisData class serializes the category axis data for a chart</p> </div> @@ -153,9 +152,8 @@ The CatAxisData class serializes the category axis data for a chart - <span class="summary_desc"><div class='inline'><p> -Create a new CatAxisData object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Create a new CatAxisData object.</p> </div></span> </li> @@ -177,9 +175,8 @@ Create a new CatAxisData object. - <span class="summary_desc"><div class='inline'><p> -Serializes the category axis data. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the category axis data.</p> </div></span> </li> @@ -205,9 +202,8 @@ Serializes the category axis data. </p><div class="docstring"> <div class="discussion"> - <p> -Create a new CatAxisData object -</p> + +<p>Create a new CatAxisData object</p> </div> @@ -228,10 +224,9 @@ Create a new CatAxisData object — - <div class='inline'><p> -the data for this category axis. This can be a simple array or a simple -typed list of cells. -</p> + <div class='inline'> +<p>the data for this category axis. This can be a simple array or a simple +typed list of cells.</p> </div> </li> @@ -291,9 +286,8 @@ typed list of cells. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the category axis data -</p> + +<p>Serializes the category axis data</p> </div> @@ -312,9 +306,8 @@ Serializes the category axis data — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -388,7 +381,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:51 2011 by + Generated on Wed Nov 30 08:46:24 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Cell.html b/doc/Axlsx/Cell.html index 574297f4..59403b4a 100644 --- a/doc/Axlsx/Cell.html +++ b/doc/Axlsx/Cell.html @@ -97,22 +97,20 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to generate cells is via Worksheet#add_row -</p> + <div class='inline'> +<p>The recommended way to generate cells is via Worksheet#add_row</p> </div> </div> -<p> -A cell in a worksheet. Cell stores inforamation requried to serialize a + +<p>A cell in a worksheet. Cell stores inforamation requried to serialize a single worksheet cell to xml. You must provde the Row that the cell belongs to and the cells value. The data type will automatically be determed if you do not specify the :type option. The default style will be applied if you -do not supply the :style option. Changing the cell’s type will recast -the value to the type specified. Altering the cell’s value via the -property accessor will also automatically cast the provided value to the -cell’s type. -</p> +do not supply the :style option. Changing the cell’s type will recast the +value to the type specified. Altering the cell’s value via the property +accessor will also automatically cast the provided value to the cell’s +type.</p> </div> @@ -122,9 +120,8 @@ cell’s type. <div class="examples"> <h3>Examples:</h3> - <h4><div class='inline'><p> -Manually creating and manipulating Cell objects -</p> + <h4><div class='inline'> +<p>Manually creating and manipulating Cell objects</p> </div></h4> <pre class="example code"><span class='ws identifier id'>ws</span> <span class='assign token'>=</span> <span class='Workbook constant id'>Workbook</span><span class='dot token'>.</span><span class='new identifier id'>new</span><span class='dot token'>.</span><span class='add_worksheet identifier id'>add_worksheet</span> <span class='comment val'># This is the simple, and recommended way to create cells. Data types will automatically be determined for you.</span> @@ -176,9 +173,8 @@ Manually creating and manipulating Cell objects - <span class="summary_desc"><div class='inline'><p> -The row this cell belongs to. -</p> + <span class="summary_desc"><div class='inline'> +<p>The row this cell belongs to.</p> </div></span> </li> @@ -203,9 +199,8 @@ The row this cell belongs to. - <span class="summary_desc"><div class='inline'><p> -The index of the cellXfs item to be applied to this cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of the cellXfs item to be applied to this cell.</p> </div></span> </li> @@ -230,9 +225,8 @@ The index of the cellXfs item to be applied to this cell. - <span class="summary_desc"><div class='inline'><p> -The cell’s data type. -</p> + <span class="summary_desc"><div class='inline'> +<p>The cell’s data type.</p> </div></span> </li> @@ -257,9 +251,8 @@ The cell’s data type. - <span class="summary_desc"><div class='inline'><p> -The value of this cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>The value of this cell.</p> </div></span> </li> @@ -294,9 +287,8 @@ The value of this cell. - <span class="summary_desc"><div class='inline'><p> -Cast the value into this cells data type. -</p> + <span class="summary_desc"><div class='inline'> +<p>Cast the value into this cells data type.</p> </div></span> </li> @@ -318,9 +310,8 @@ Cast the value into this cells data type. - <span class="summary_desc"><div class='inline'><p> -Determines the cell type based on the cell value. -</p> + <span class="summary_desc"><div class='inline'> +<p>Determines the cell type based on the cell value.</p> </div></span> </li> @@ -342,9 +333,8 @@ Determines the cell type based on the cell value. - <span class="summary_desc"><div class='inline'><p> -converts the column index into alphabetical values. -</p> + <span class="summary_desc"><div class='inline'> +<p>converts the column index into alphabetical values.</p> </div></span> </li> @@ -366,9 +356,8 @@ converts the column index into alphabetical values. - <span class="summary_desc"><div class='inline'><p> -The index of the cell in the containing row. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of the cell in the containing row.</p> </div></span> </li> @@ -392,9 +381,8 @@ The index of the cell in the containing row. - <span class="summary_desc"><div class='inline'><p> -A new instance of Cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>A new instance of Cell.</p> </div></span> </li> @@ -416,9 +404,8 @@ A new instance of Cell. - <span class="summary_desc"><div class='inline'><p> -The alpha(column)numeric(row) reference for this sell. -</p> + <span class="summary_desc"><div class='inline'> +<p>The alpha(column)numeric(row) reference for this sell.</p> </div></span> </li> @@ -440,9 +427,8 @@ The alpha(column)numeric(row) reference for this sell. - <span class="summary_desc"><div class='inline'><p> -The absolute alpha(column)numeric(row) reference for this sell. -</p> + <span class="summary_desc"><div class='inline'> +<p>The absolute alpha(column)numeric(row) reference for this sell.</p> </div></span> </li> @@ -464,9 +450,8 @@ The absolute alpha(column)numeric(row) reference for this sell. - <span class="summary_desc"><div class='inline'><p> -Serializes the cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the cell.</p> </div></span> </li> @@ -487,9 +472,8 @@ Serializes the cell. </p><div class="docstring"> <div class="discussion"> - <p> -A new instance of Cell -</p> + +<p>A new instance of Cell</p> </div> @@ -508,9 +492,8 @@ A new instance of Cell — - <div class='inline'><p> -The row this cell belongs to. -</p> + <div class='inline'> +<p>The row this cell belongs to.</p> </div> </li> @@ -527,9 +510,8 @@ The row this cell belongs to. — - <div class='inline'><p> -The value associated with this cell. -</p> + <div class='inline'> +<p>The value associated with this cell.</p> </div> </li> @@ -546,9 +528,8 @@ The value associated with this cell. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -571,10 +552,9 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -The intended data type for this cell. If not specified the data type will -be determined internally based on the vlue provided. -</p> + — <div class='inline'> +<p>The intended data type for this cell. If not specified the data type will +be determined internally based on the vlue provided.</p> </div> </li> @@ -584,10 +564,9 @@ be determined internally based on the vlue provided. <span class="default"> </span> - — <div class='inline'><p> -The index of the cellXfs item to be applied to this cell. If not specified, -the default style (0) will be applied. -</p> + — <div class='inline'> +<p>The index of the cellXfs item to be applied to this cell. If not specified, +the default style (0) will be applied.</p> </div> </li> @@ -646,9 +625,8 @@ the default style (0) will be applied. </p><div class="docstring"> <div class="discussion"> - <p> -The row this cell belongs to. -</p> + +<p>The row this cell belongs to.</p> </div> @@ -703,9 +681,8 @@ The row this cell belongs to. </p><div class="docstring"> <div class="discussion"> - <p> -The index of the cellXfs item to be applied to this cell. -</p> + +<p>The index of the cellXfs item to be applied to this cell.</p> </div> @@ -770,26 +747,23 @@ The index of the cellXfs item to be applied to this cell. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -If the value provided cannot be cast into the type specified, type is -changed to :string and the following logic is applied. -</p> -<pre class="code"> - <span class='symbol val'>:string</span> <span class='to identifier id'>to</span> <span class='symbol val'>:integer</span> <span class='or or kw'>or</span> <span class='symbol val'>:float</span><span class='comma token'>,</span> <span class='type identifier id'>type</span> <span class='coversions identifier id'>coversions</span> <span class='always identifier id'>always</span> <span class='return return kw'>return</span> <span class='integer val'>0</span> <span class='or or kw'>or</span> <span class='integer val'>0</span><span class='integer val'>.0</span> - <span class='symbol val'>:string</span><span class='comma token'>,</span> <span class='symbol val'>:integer</span><span class='comma token'>,</span> <span class='or or kw'>or</span> <span class='symbol val'>:float</span> <span class='to identifier id'>to</span> <span class='symbol val'>:time</span> <span class='conversions identifier id'>conversions</span> <span class='always identifier id'>always</span> <span class='return return kw'>return</span> <span class='the identifier id'>the</span> <span class='original identifier id'>original</span> <span class='value identifier id'>value</span> <span class='as identifier id'>as</span> <span class='a identifier id'>a</span> <span class='string identifier id'>string</span> <span class='and and kw'>and</span> <span class='set identifier id'>set</span> <span class='the identifier id'>the</span> <span class='cells identifier id'>cells</span> <span class='type identifier id'>type</span> <span class='to identifier id'>to</span> <span class='symbol val'>:string</span><span class='dot token'>.</span> + <div class='inline'> +<p>If the value provided cannot be cast into the type specified, type is +changed to :string and the following logic is applied.</p> + +<pre class="code"><span class='symbol val'>:string</span> <span class='to identifier id'>to</span> <span class='symbol val'>:integer</span> <span class='or or kw'>or</span> <span class='symbol val'>:float</span><span class='comma token'>,</span> <span class='type identifier id'>type</span> <span class='coversions identifier id'>coversions</span> <span class='always identifier id'>always</span> <span class='return return kw'>return</span> <span class='integer val'>0</span> <span class='or or kw'>or</span> <span class='integer val'>0</span><span class='integer val'>.0</span> +<span class='symbol val'>:string</span><span class='comma token'>,</span> <span class='symbol val'>:integer</span><span class='comma token'>,</span> <span class='or or kw'>or</span> <span class='symbol val'>:float</span> <span class='to identifier id'>to</span> <span class='symbol val'>:time</span> <span class='conversions identifier id'>conversions</span> <span class='always identifier id'>always</span> <span class='return return kw'>return</span> <span class='the identifier id'>the</span> <span class='original identifier id'>original</span> <span class='value identifier id'>value</span> <span class='as identifier id'>as</span> <span class='a identifier id'>a</span> <span class='string identifier id'>string</span> <span class='and and kw'>and</span> <span class='set identifier id'>set</span> <span class='the identifier id'>the</span> <span class='cells identifier id'>cells</span> <span class='type identifier id'>type</span> <span class='to identifier id'>to</span> <span class='symbol val'>:string</span><span class='dot token'>.</span> </pre> -<p> -No support is currently implemented for parsing time strings. -</p> + +<p>No support is currently implemented for parsing time strings.</p> </div> </div> -<p> -The cell’s data type. Currently only four types are supported, :time, + +<p>The cell’s data type. Currently only four types are supported, :time, :float, :integer and :string. Changing the type for a cell will recast the value into that type. If no type option is specified in the constructor, -the type is automatically determed. -</p> +the type is automatically determed.</p> </div> @@ -807,9 +781,8 @@ the type is automatically determed. — - <div class='inline'><p> -The type of data this cell’s value is cast to. -</p> + <div class='inline'> +<p>The type of data this cell’s value is cast to.</p> </div> </li> @@ -826,9 +799,8 @@ The type of data this cell’s value is cast to. — - <div class='inline'><p> -Cell.type must be one of [:time, :float, :integer, :string] -</p> + <div class='inline'> +<p>Cell.type must be one of [:time, :float, :integer, :string]</p> </div> </li> @@ -876,9 +848,8 @@ Cell.type must be one of [:time, :float, :integer, :string] </p><div class="docstring"> <div class="discussion"> - <p> -The value of this cell. -</p> + +<p>The value of this cell.</p> </div> @@ -896,9 +867,8 @@ The value of this cell. - <div class='inline'><p> -casted value based on cell’s type attribute. -</p> + <div class='inline'> +<p>casted value based on cell’s type attribute.</p> </div> </li> @@ -946,18 +916,16 @@ casted value based on cell’s type attribute. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -About Time - Time in OOXML is <b>different</b> from what you might expect. -The history as to why is interesting, but you can safely assume that if you -are generating docs on a mac, you will want to specify Workbook.1904 as -true when using time typed values. -</p> + <div class='inline'> +<p>About Time - Time in OOXML is <strong>different</strong> from what you +might expect. The history as to why is interesting, but you can safely +assume that if you are generating docs on a mac, you will want to specify +Workbook.1904 as true when using time typed values.</p> </div> </div> -<p> -Cast the value into this cells data type. -</p> + +<p>Cast the value into this cells data type.</p> </div> @@ -991,16 +959,24 @@ Cast the value into this cells data type. 179 180 181 -182</pre> +182 +183 +184 +185 +186</pre> </td> <td> <pre class="code"><span class="info file"># File 'lib/axlsx/workbook/worksheet/cell.rb', line 169</span> <span class='def def kw'>def</span> <span class='cast_value identifier id'>cast_value</span><span class='lparen token'>(</span><span class='v identifier id'>v</span><span class='rparen token'>)</span> <span class='if if kw'>if</span> <span class='lparen token'>(</span><span class='@type ivar id'>@type</span> <span class='eq op'>==</span> <span class='symbol val'>:time</span> <span class='andop op'>&&</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='is_a? fid id'>is_a?</span><span class='lparen token'>(</span><span class='Time constant id'>Time</span><span class='rparen token'>)</span><span class='rparen token'>)</span> <span class='orop op'>||</span> <span class='lparen token'>(</span><span class='@type ivar id'>@type</span> <span class='eq op'>==</span> <span class='symbol val'>:time</span> <span class='andop op'>&&</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='respond_to? fid id'>respond_to?</span><span class='lparen token'>(</span><span class='symbol val'>:to_time</span><span class='rparen token'>)</span><span class='rparen token'>)</span> - <span class='v identifier id'>v</span> <span class='assign token'>=</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='to_time identifier id'>to_time</span> - <span class='epoc identifier id'>epoc</span> <span class='assign token'>=</span> <span class='Workbook constant id'>Workbook</span><span class='dot token'>.</span><span class='date1904 identifier id'>date1904</span> <span class='integer val'>? </span><span class='Time constant id'>Time</span><span class='dot token'>.</span><span class='local identifier id'>local</span><span class='lparen token'>(</span><span class='integer val'>1904</span><span class='comma token'>,</span><span class='integer val'>1</span><span class='comma token'>,</span><span class='integer val'>1</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='v identifier id'>v</span><span class='dot token'>.</span><span class='zone identifier id'>zone</span><span class='rparen token'>)</span> <span class='colon op'>:</span> <span class='Time constant id'>Time</span><span class='dot token'>.</span><span class='local identifier id'>local</span><span class='lparen token'>(</span><span class='integer val'>1900</span><span class='comma token'>,</span><span class='integer val'>1</span><span class='comma token'>,</span><span class='integer val'>1</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='v identifier id'>v</span><span class='dot token'>.</span><span class='zone identifier id'>zone</span><span class='rparen token'>)</span> - <span class='lparen token'>(</span><span class='lparen token'>(</span><span class='v identifier id'>v</span> <span class='minus op'>-</span> <span class='epoc identifier id'>epoc</span><span class='rparen token'>)</span> <span class='div op'>/</span><span class='float val'>60.0</span><span class='div op'>/</span><span class='float val'>60.0</span><span class='div op'>/</span><span class='float val'>24.0</span><span class='rparen token'>)</span><span class='dot token'>.</span><span class='to_f identifier id'>to_f</span> + <span class='v identifier id'>v</span> <span class='assign token'>=</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='respond_to? fid id'>respond_to?</span><span class='lparen token'>(</span><span class='symbol val'>:to_time</span><span class='rparen token'>)</span> <span class='question op'>?</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='to_time identifier id'>to_time</span> <span class='colon op'>:</span> <span class='v identifier id'>v</span> + <span class='comment val'># Using hardcoded offsets here as some operating systems will not except a 'negative' offset from the ruby epoc.</span> + <span class='comment val'># (1970)</span> + <span class='epoc1900 identifier id'>epoc1900</span> <span class='assign token'>=</span> <span class='integer val'>-2209021200</span> <span class='comment val'>#Time.local(1900, 1, 1) </span> + <span class='epoc1904 identifier id'>epoc1904</span> <span class='assign token'>=</span> <span class='integer val'>-2082877200</span> <span class='comment val'>#Time.local(1904, 1, 1) </span> + <span class='epoc identifier id'>epoc</span> <span class='assign token'>=</span> <span class='Workbook constant id'>Workbook</span><span class='dot token'>.</span><span class='date1904 identifier id'>date1904</span> <span class='integer val'>? </span><span class='epoc1904 identifier id'>epoc1904</span> <span class='colon op'>:</span> <span class='epoc1900 identifier id'>epoc1900</span> + <span class='lparen token'>(</span><span class='lparen token'>(</span><span class='v identifier id'>v</span><span class='dot token'>.</span><span class='localtime identifier id'>localtime</span><span class='dot token'>.</span><span class='to_f identifier id'>to_f</span> <span class='minus op'>-</span> <span class='epoc identifier id'>epoc</span><span class='rparen token'>)</span> <span class='div op'>/</span><span class='float val'>60.0</span><span class='div op'>/</span><span class='float val'>60.0</span><span class='div op'>/</span><span class='float val'>24.0</span><span class='rparen token'>)</span><span class='dot token'>.</span><span class='to_f identifier id'>to_f</span> <span class='elsif elsif kw'>elsif</span> <span class='@type ivar id'>@type</span> <span class='eq op'>==</span> <span class='symbol val'>:float</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='to_f identifier id'>to_f</span> <span class='elsif elsif kw'>elsif</span> <span class='@type ivar id'>@type</span> <span class='eq op'>==</span> <span class='symbol val'>:integer</span> @@ -1028,28 +1004,22 @@ Cast the value into this cells data type. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -This is only used when a cell is created but no :type option is specified, -the following rules apply: -</p> -<ol> -<li>If the value is an instance of Time, the type is set to :time - -</li> -<li>:float and :integer types are determined by regular expression matching. - -</li> -<li>Anything that does not meet either of the above is determined to be -:string. - -</li> -</ol> + <div class='inline'> +<p>This is only used when a cell is created but no :type option is specified, +the following rules apply:</p> +<ol><li> +<p>If the value is an instance of Time, the type is set to :time</p> +</li><li> +<p>:float and :integer types are determined by regular expression matching.</p> +</li><li> +<p>Anything that does not meet either of the above is determined to be +:string.</p> +</li></ol> </div> </div> -<p> -Determines the cell type based on the cell value. -</p> + +<p>Determines the cell type based on the cell value.</p> </div> @@ -1067,9 +1037,8 @@ Determines the cell type based on the cell value. — - <div class='inline'><p> -The determined type -</p> + <div class='inline'> +<p>The determined type</p> </div> </li> @@ -1126,16 +1095,14 @@ The determined type <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -This follows the standard spreadsheet convention of naming columns A to Z, -followed by AA to AZ etc. -</p> + <div class='inline'> +<p>This follows the standard spreadsheet convention of naming columns A to Z, +followed by AA to AZ etc.</p> </div> </div> -<p> -converts the column index into alphabetical values. -</p> + +<p>converts the column index into alphabetical values.</p> </div> @@ -1209,7 +1176,11 @@ converts the column index into alphabetical values. 180 181 182 -183</pre> +183 +184 +185 +186 +187</pre> </td> <td> <pre class="code"><span class="info file"># File 'lib/axlsx/workbook/worksheet/cell.rb', line 136</span> @@ -1249,9 +1220,13 @@ converts the column index into alphabetical values. <span class='comment val'># @see Axlsx#date1904</span> <span class='def def kw'>def</span> <span class='cast_value identifier id'>cast_value</span><span class='lparen token'>(</span><span class='v identifier id'>v</span><span class='rparen token'>)</span> <span class='if if kw'>if</span> <span class='lparen token'>(</span><span class='@type ivar id'>@type</span> <span class='eq op'>==</span> <span class='symbol val'>:time</span> <span class='andop op'>&&</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='is_a? fid id'>is_a?</span><span class='lparen token'>(</span><span class='Time constant id'>Time</span><span class='rparen token'>)</span><span class='rparen token'>)</span> <span class='orop op'>||</span> <span class='lparen token'>(</span><span class='@type ivar id'>@type</span> <span class='eq op'>==</span> <span class='symbol val'>:time</span> <span class='andop op'>&&</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='respond_to? fid id'>respond_to?</span><span class='lparen token'>(</span><span class='symbol val'>:to_time</span><span class='rparen token'>)</span><span class='rparen token'>)</span> - <span class='v identifier id'>v</span> <span class='assign token'>=</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='to_time identifier id'>to_time</span> - <span class='epoc identifier id'>epoc</span> <span class='assign token'>=</span> <span class='Workbook constant id'>Workbook</span><span class='dot token'>.</span><span class='date1904 identifier id'>date1904</span> <span class='integer val'>? </span><span class='Time constant id'>Time</span><span class='dot token'>.</span><span class='local identifier id'>local</span><span class='lparen token'>(</span><span class='integer val'>1904</span><span class='comma token'>,</span><span class='integer val'>1</span><span class='comma token'>,</span><span class='integer val'>1</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='v identifier id'>v</span><span class='dot token'>.</span><span class='zone identifier id'>zone</span><span class='rparen token'>)</span> <span class='colon op'>:</span> <span class='Time constant id'>Time</span><span class='dot token'>.</span><span class='local identifier id'>local</span><span class='lparen token'>(</span><span class='integer val'>1900</span><span class='comma token'>,</span><span class='integer val'>1</span><span class='comma token'>,</span><span class='integer val'>1</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='integer val'>0</span><span class='comma token'>,</span><span class='v identifier id'>v</span><span class='dot token'>.</span><span class='zone identifier id'>zone</span><span class='rparen token'>)</span> - <span class='lparen token'>(</span><span class='lparen token'>(</span><span class='v identifier id'>v</span> <span class='minus op'>-</span> <span class='epoc identifier id'>epoc</span><span class='rparen token'>)</span> <span class='div op'>/</span><span class='float val'>60.0</span><span class='div op'>/</span><span class='float val'>60.0</span><span class='div op'>/</span><span class='float val'>24.0</span><span class='rparen token'>)</span><span class='dot token'>.</span><span class='to_f identifier id'>to_f</span> + <span class='v identifier id'>v</span> <span class='assign token'>=</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='respond_to? fid id'>respond_to?</span><span class='lparen token'>(</span><span class='symbol val'>:to_time</span><span class='rparen token'>)</span> <span class='question op'>?</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='to_time identifier id'>to_time</span> <span class='colon op'>:</span> <span class='v identifier id'>v</span> + <span class='comment val'># Using hardcoded offsets here as some operating systems will not except a 'negative' offset from the ruby epoc.</span> + <span class='comment val'># (1970)</span> + <span class='epoc1900 identifier id'>epoc1900</span> <span class='assign token'>=</span> <span class='integer val'>-2209021200</span> <span class='comment val'>#Time.local(1900, 1, 1) </span> + <span class='epoc1904 identifier id'>epoc1904</span> <span class='assign token'>=</span> <span class='integer val'>-2082877200</span> <span class='comment val'>#Time.local(1904, 1, 1) </span> + <span class='epoc identifier id'>epoc</span> <span class='assign token'>=</span> <span class='Workbook constant id'>Workbook</span><span class='dot token'>.</span><span class='date1904 identifier id'>date1904</span> <span class='integer val'>? </span><span class='epoc1904 identifier id'>epoc1904</span> <span class='colon op'>:</span> <span class='epoc1900 identifier id'>epoc1900</span> + <span class='lparen token'>(</span><span class='lparen token'>(</span><span class='v identifier id'>v</span><span class='dot token'>.</span><span class='localtime identifier id'>localtime</span><span class='dot token'>.</span><span class='to_f identifier id'>to_f</span> <span class='minus op'>-</span> <span class='epoc identifier id'>epoc</span><span class='rparen token'>)</span> <span class='div op'>/</span><span class='float val'>60.0</span><span class='div op'>/</span><span class='float val'>60.0</span><span class='div op'>/</span><span class='float val'>24.0</span><span class='rparen token'>)</span><span class='dot token'>.</span><span class='to_f identifier id'>to_f</span> <span class='elsif elsif kw'>elsif</span> <span class='@type ivar id'>@type</span> <span class='eq op'>==</span> <span class='symbol val'>:float</span> <span class='v identifier id'>v</span><span class='dot token'>.</span><span class='to_f identifier id'>to_f</span> <span class='elsif elsif kw'>elsif</span> <span class='@type ivar id'>@type</span> <span class='eq op'>==</span> <span class='symbol val'>:integer</span> @@ -1277,9 +1252,8 @@ converts the column index into alphabetical values. </p><div class="docstring"> <div class="discussion"> - <p> -The index of the cell in the containing row. -</p> + +<p>The index of the cell in the containing row.</p> </div> @@ -1297,9 +1271,8 @@ The index of the cell in the containing row. — - <div class='inline'><p> -The index of the cell in the containing row. -</p> + <div class='inline'> +<p>The index of the cell in the containing row.</p> </div> </li> @@ -1337,9 +1310,8 @@ The index of the cell in the containing row. </p><div class="docstring"> <div class="discussion"> - <p> -The alpha(column)numeric(row) reference for this sell. -</p> + +<p>The alpha(column)numeric(row) reference for this sell.</p> </div> @@ -1349,9 +1321,8 @@ The alpha(column)numeric(row) reference for this sell. <div class="examples"> <h3>Examples:</h3> - <h4><div class='inline'><p> -Relative Cell Reference -</p> + <h4><div class='inline'> +<p>Relative Cell Reference</p> </div></h4> <pre class="example code"><span class='ws identifier id'>ws</span><span class='dot token'>.</span><span class='rows identifier id'>rows</span><span class='dot token'>.</span><span class='first identifier id'>first</span><span class='dot token'>.</span><span class='cells identifier id'>cells</span><span class='dot token'>.</span><span class='first identifier id'>first</span><span class='dot token'>.</span><span class='r identifier id'>r</span> <span class='comment val'>#=> "A1" </span> </pre> @@ -1369,9 +1340,8 @@ Relative Cell Reference — - <div class='inline'><p> -The alpha(column)numeric(row) reference for this sell. -</p> + <div class='inline'> +<p>The alpha(column)numeric(row) reference for this sell.</p> </div> </li> @@ -1409,9 +1379,8 @@ The alpha(column)numeric(row) reference for this sell. </p><div class="docstring"> <div class="discussion"> - <p> -The absolute alpha(column)numeric(row) reference for this sell. -</p> + +<p>The absolute alpha(column)numeric(row) reference for this sell.</p> </div> @@ -1421,9 +1390,8 @@ The absolute alpha(column)numeric(row) reference for this sell. <div class="examples"> <h3>Examples:</h3> - <h4><div class='inline'><p> -Absolute Cell Reference -</p> + <h4><div class='inline'> +<p>Absolute Cell Reference</p> </div></h4> <pre class="example code"><span class='ws identifier id'>ws</span><span class='dot token'>.</span><span class='rows identifier id'>rows</span><span class='dot token'>.</span><span class='first identifier id'>first</span><span class='dot token'>.</span><span class='cells identifier id'>cells</span><span class='dot token'>.</span><span class='first identifier id'>first</span><span class='dot token'>.</span><span class='r identifier id'>r</span> <span class='comment val'>#=> "$A$1" </span> </pre> @@ -1441,9 +1409,8 @@ Absolute Cell Reference — - <div class='inline'><p> -The absolute alpha(column)numeric(row) reference for this sell. -</p> + <div class='inline'> +<p>The absolute alpha(column)numeric(row) reference for this sell.</p> </div> </li> @@ -1484,16 +1451,14 @@ The absolute alpha(column)numeric(row) reference for this sell. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Shared Strings are not used in this library. All values are set directly in -the each sheet. -</p> + <div class='inline'> +<p>Shared Strings are not used in this library. All values are set directly in +the each sheet.</p> </div> </div> -<p> -Serializes the cell -</p> + +<p>Serializes the cell</p> </div> @@ -1512,9 +1477,8 @@ Serializes the cell — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -1532,9 +1496,8 @@ The document builder instance this objects xml will be added to. — - <div class='inline'><p> -xml text for the cell -</p> + <div class='inline'> +<p>xml text for the cell</p> </div> </li> @@ -1586,7 +1549,7 @@ xml text for the cell </div> <div id="footer"> - Generated on Tue Nov 29 13:28:42 2011 by + Generated on Wed Nov 30 08:46:35 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/CellAlignment.html b/doc/Axlsx/CellAlignment.html index 5a04b500..480b145f 100644 --- a/doc/Axlsx/CellAlignment.html +++ b/doc/Axlsx/CellAlignment.html @@ -97,16 +97,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Using Styles#add_style is the recommended way to manage cell alignment. -</p> + <div class='inline'> +<p>Using Styles#add_style is the recommended way to manage cell alignment.</p> </div> </div> -<p> -CellAlignment stores information about the cell alignment of a style Xf -Object. -</p> + +<p>CellAlignment stores information about the cell alignment of a style Xf +Object.</p> </div> @@ -145,9 +143,8 @@ Object. - <span class="summary_desc"><div class='inline'><p> -The horizontal alignment of the cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>The horizontal alignment of the cell.</p> </div></span> </li> @@ -172,9 +169,8 @@ The horizontal alignment of the cell. - <span class="summary_desc"><div class='inline'><p> -The amount of indent. -</p> + <span class="summary_desc"><div class='inline'> +<p>The amount of indent.</p> </div></span> </li> @@ -199,9 +195,8 @@ The amount of indent. - <span class="summary_desc"><div class='inline'><p> -Indicate if the last line should be justified. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicate if the last line should be justified.</p> </div></span> </li> @@ -226,10 +221,9 @@ Indicate if the last line should be justified. - <span class="summary_desc"><div class='inline'><p> -The reading order of the text 0 Context Dependent 1 Left-to-Right 2 -Right-to-Left. -</p> + <span class="summary_desc"><div class='inline'> +<p>The reading order of the text 0 Context Dependent 1 Left-to-Right 2 +Right-to-Left.</p> </div></span> </li> @@ -254,9 +248,8 @@ Right-to-Left. - <span class="summary_desc"><div class='inline'><p> -The amount of relativeIndent. -</p> + <span class="summary_desc"><div class='inline'> +<p>The amount of relativeIndent.</p> </div></span> </li> @@ -281,9 +274,8 @@ The amount of relativeIndent. - <span class="summary_desc"><div class='inline'><p> -Indicate if the text should be shrunk to the fit in the cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicate if the text should be shrunk to the fit in the cell.</p> </div></span> </li> @@ -308,9 +300,8 @@ Indicate if the text should be shrunk to the fit in the cell. - <span class="summary_desc"><div class='inline'><p> -The textRotation of the cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>The textRotation of the cell.</p> </div></span> </li> @@ -335,9 +326,8 @@ The textRotation of the cell. - <span class="summary_desc"><div class='inline'><p> -The vertical alignment of the cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>The vertical alignment of the cell.</p> </div></span> </li> @@ -362,9 +352,8 @@ The vertical alignment of the cell. - <span class="summary_desc"><div class='inline'><p> -Indicate if the text of the cell should wrap. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicate if the text of the cell should wrap.</p> </div></span> </li> @@ -401,9 +390,8 @@ Indicate if the text of the cell should wrap. - <span class="summary_desc"><div class='inline'><p> -Create a new cell_alignment object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Create a new cell_alignment object.</p> </div></span> </li> @@ -425,9 +413,8 @@ Create a new cell_alignment object. - <span class="summary_desc"><div class='inline'><p> -Serializes the cell alignment. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the cell alignment.</p> </div></span> </li> @@ -448,9 +435,8 @@ Serializes the cell alignment. </p><div class="docstring"> <div class="discussion"> - <p> -Create a new cell_alignment object -</p> + +<p>Create a new cell_alignment object</p> </div> @@ -471,9 +457,8 @@ Create a new cell_alignment object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -617,25 +602,23 @@ a customizable set of options <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The horizontal cell alignement style must be one of -</p> -<pre class="code"> - <span class='symbol val'>:general</span> - <span class='symbol val'>:left</span> - <span class='symbol val'>:center</span> - <span class='symbol val'>:right</span> - <span class='symbol val'>:fill</span> - <span class='symbol val'>:justify</span> - <span class='symbol val'>:centerContinuous</span> - <span class='symbol val'>:distributed</span> + <div class='inline'> +<p>The horizontal cell alignement style must be one of</p> + +<pre class="code"><span class='symbol val'>:general</span> +<span class='symbol val'>:left</span> +<span class='symbol val'>:center</span> +<span class='symbol val'>:right</span> +<span class='symbol val'>:fill</span> +<span class='symbol val'>:justify</span> +<span class='symbol val'>:centerContinuous</span> +<span class='symbol val'>:distributed</span> </pre> </div> </div> -<p> -The horizontal alignment of the cell. -</p> + +<p>The horizontal alignment of the cell.</p> </div> @@ -690,9 +673,8 @@ The horizontal alignment of the cell. </p><div class="docstring"> <div class="discussion"> - <p> -The amount of indent -</p> + +<p>The amount of indent</p> </div> @@ -747,9 +729,8 @@ The amount of indent </p><div class="docstring"> <div class="discussion"> - <p> -Indicate if the last line should be justified. -</p> + +<p>Indicate if the last line should be justified.</p> </div> @@ -804,10 +785,9 @@ Indicate if the last line should be justified. </p><div class="docstring"> <div class="discussion"> - <p> -The reading order of the text 0 Context Dependent 1 Left-to-Right 2 -Right-to-Left -</p> + +<p>The reading order of the text 0 Context Dependent 1 Left-to-Right 2 +Right-to-Left</p> </div> @@ -862,9 +842,8 @@ Right-to-Left </p><div class="docstring"> <div class="discussion"> - <p> -The amount of relativeIndent -</p> + +<p>The amount of relativeIndent</p> </div> @@ -919,9 +898,8 @@ The amount of relativeIndent </p><div class="docstring"> <div class="discussion"> - <p> -Indicate if the text should be shrunk to the fit in the cell. -</p> + +<p>Indicate if the text should be shrunk to the fit in the cell.</p> </div> @@ -976,9 +954,8 @@ Indicate if the text should be shrunk to the fit in the cell. </p><div class="docstring"> <div class="discussion"> - <p> -The textRotation of the cell. -</p> + +<p>The textRotation of the cell.</p> </div> @@ -1036,22 +1013,20 @@ The textRotation of the cell. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The vertical cell allingment style must be one of the following: -</p> -<pre class="code"> - <span class='symbol val'>:top</span> - <span class='symbol val'>:center</span> - <span class='symbol val'>:bottom</span> - <span class='symbol val'>:justify</span> - <span class='symbol val'>:distributed</span> + <div class='inline'> +<p>The vertical cell allingment style must be one of the following:</p> + +<pre class="code"><span class='symbol val'>:top</span> +<span class='symbol val'>:center</span> +<span class='symbol val'>:bottom</span> +<span class='symbol val'>:justify</span> +<span class='symbol val'>:distributed</span> </pre> </div> </div> -<p> -The vertical alignment of the cell. -</p> + +<p>The vertical alignment of the cell.</p> </div> @@ -1106,9 +1081,8 @@ The vertical alignment of the cell. </p><div class="docstring"> <div class="discussion"> - <p> -Indicate if the text of the cell should wrap -</p> + +<p>Indicate if the text of the cell should wrap</p> </div> @@ -1167,9 +1141,8 @@ Indicate if the text of the cell should wrap </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the cell alignment -</p> + +<p>Serializes the cell alignment</p> </div> @@ -1188,9 +1161,8 @@ Serializes the cell alignment — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -1238,7 +1210,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:59 2011 by + Generated on Wed Nov 30 08:46:30 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/CellProtection.html b/doc/Axlsx/CellProtection.html index 1d099ed0..ae7793ce 100644 --- a/doc/Axlsx/CellProtection.html +++ b/doc/Axlsx/CellProtection.html @@ -97,16 +97,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Using Styles#add_style is the recommended way to manage cell protection. -</p> + <div class='inline'> +<p>Using Styles#add_style is the recommended way to manage cell protection.</p> </div> </div> -<p> -CellProtection stores information about locking or hiding cells in -spreadsheet. -</p> + +<p>CellProtection stores information about locking or hiding cells in +spreadsheet.</p> </div> @@ -145,9 +143,8 @@ spreadsheet. - <span class="summary_desc"><div class='inline'><p> -specifies locking for cells that have the style containing this protection. -</p> + <span class="summary_desc"><div class='inline'> +<p>specifies locking for cells that have the style containing this protection.</p> </div></span> </li> @@ -172,9 +169,8 @@ specifies locking for cells that have the style containing this protection. - <span class="summary_desc"><div class='inline'><p> -specifies if the cells that have the style containing this protection. -</p> + <span class="summary_desc"><div class='inline'> +<p>specifies if the cells that have the style containing this protection.</p> </div></span> </li> @@ -211,9 +207,8 @@ specifies if the cells that have the style containing this protection. - <span class="summary_desc"><div class='inline'><p> -Creates a new CellProtection. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new CellProtection.</p> </div></span> </li> @@ -235,9 +230,8 @@ Creates a new CellProtection. - <span class="summary_desc"><div class='inline'><p> -Serializes the cell protection. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the cell protection.</p> </div></span> </li> @@ -258,9 +252,8 @@ Serializes the cell protection. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new CellProtection -</p> + +<p>Creates a new CellProtection</p> </div> @@ -281,9 +274,8 @@ Creates a new CellProtection — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -302,9 +294,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -value for hidden protection -</p> + — <div class='inline'> +<p>value for hidden protection</p> </div> </li> @@ -314,9 +305,8 @@ value for hidden protection <span class="default"> </span> - — <div class='inline'><p> -value for locked protection -</p> + — <div class='inline'> +<p>value for locked protection</p> </div> </li> @@ -367,9 +357,8 @@ value for locked protection </p><div class="docstring"> <div class="discussion"> - <p> -specifies locking for cells that have the style containing this protection -</p> + +<p>specifies locking for cells that have the style containing this protection</p> </div> @@ -424,9 +413,8 @@ specifies locking for cells that have the style containing this protection </p><div class="docstring"> <div class="discussion"> - <p> -specifies if the cells that have the style containing this protection -</p> + +<p>specifies if the cells that have the style containing this protection</p> </div> @@ -485,9 +473,8 @@ specifies if the cells that have the style containing this protection </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the cell protection -</p> + +<p>Serializes the cell protection</p> </div> @@ -506,9 +493,8 @@ Serializes the cell protection — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -556,7 +542,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:29:02 2011 by + Generated on Wed Nov 30 08:46:34 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/CellStyle.html b/doc/Axlsx/CellStyle.html index bf6ede68..b66ceaf8 100644 --- a/doc/Axlsx/CellStyle.html +++ b/doc/Axlsx/CellStyle.html @@ -97,16 +97,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Using Styles#add_style is the recommended way to manage cell styling. -</p> + <div class='inline'> +<p>Using Styles#add_style is the recommended way to manage cell styling.</p> </div> </div> -<p> -CellStyle defines named styles that reference defined formatting records -and can be used in your worksheet. -</p> + +<p>CellStyle defines named styles that reference defined formatting records +and can be used in your worksheet.</p> </div> @@ -145,9 +143,8 @@ and can be used in your worksheet. - <span class="summary_desc"><div class='inline'><p> -The buildinId to use when this named style is applied. -</p> + <span class="summary_desc"><div class='inline'> +<p>The buildinId to use when this named style is applied.</p> </div></span> </li> @@ -172,9 +169,8 @@ The buildinId to use when this named style is applied. - <span class="summary_desc"><div class='inline'><p> -Indicates that the build in style reference has been customized. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates that the build in style reference has been customized.</p> </div></span> </li> @@ -199,10 +195,9 @@ Indicates that the build in style reference has been customized. - <span class="summary_desc"><div class='inline'><p> -Determines if this named style should show in the list of styles when using -excel. -</p> + <span class="summary_desc"><div class='inline'> +<p>Determines if this named style should show in the list of styles when using +excel.</p> </div></span> </li> @@ -227,10 +222,9 @@ excel. - <span class="summary_desc"><div class='inline'><p> -Determines if this formatting is for an outline style, and what level of -the outline it is to be applied to. -</p> + <span class="summary_desc"><div class='inline'> +<p>Determines if this formatting is for an outline style, and what level of +the outline it is to be applied to.</p> </div></span> </li> @@ -255,9 +249,8 @@ the outline it is to be applied to. - <span class="summary_desc"><div class='inline'><p> -The name of this cell style. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name of this cell style.</p> </div></span> </li> @@ -282,9 +275,8 @@ The name of this cell style. - <span class="summary_desc"><div class='inline'><p> -The formatting record id this named style utilizes. -</p> + <span class="summary_desc"><div class='inline'> +<p>The formatting record id this named style utilizes.</p> </div></span> </li> @@ -321,9 +313,8 @@ The formatting record id this named style utilizes. - <span class="summary_desc"><div class='inline'><p> -Creats a new CellStyle object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creats a new CellStyle object.</p> </div></span> </li> @@ -345,9 +336,8 @@ Creats a new CellStyle object. - <span class="summary_desc"><div class='inline'><p> -Serializes the cell style. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the cell style.</p> </div></span> </li> @@ -368,9 +358,8 @@ Serializes the cell style. </p><div class="docstring"> <div class="discussion"> - <p> -Creats a new CellStyle object -</p> + +<p>Creats a new CellStyle object</p> </div> @@ -391,9 +380,8 @@ Creats a new CellStyle object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -507,9 +495,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The buildinId to use when this named style is applied -</p> + +<p>The buildinId to use when this named style is applied</p> </div> @@ -571,9 +558,8 @@ The buildinId to use when this named style is applied </p><div class="docstring"> <div class="discussion"> - <p> -Indicates that the build in style reference has been customized. -</p> + +<p>Indicates that the build in style reference has been customized.</p> </div> @@ -628,10 +614,9 @@ Indicates that the build in style reference has been customized. </p><div class="docstring"> <div class="discussion"> - <p> -Determines if this named style should show in the list of styles when using -excel -</p> + +<p>Determines if this named style should show in the list of styles when using +excel</p> </div> @@ -686,10 +671,9 @@ excel </p><div class="docstring"> <div class="discussion"> - <p> -Determines if this formatting is for an outline style, and what level of -the outline it is to be applied to. -</p> + +<p>Determines if this formatting is for an outline style, and what level of +the outline it is to be applied to.</p> </div> @@ -744,9 +728,8 @@ the outline it is to be applied to. </p><div class="docstring"> <div class="discussion"> - <p> -The name of this cell style -</p> + +<p>The name of this cell style</p> </div> @@ -801,9 +784,8 @@ The name of this cell style </p><div class="docstring"> <div class="discussion"> - <p> -The formatting record id this named style utilizes -</p> + +<p>The formatting record id this named style utilizes</p> </div> @@ -869,9 +851,8 @@ The formatting record id this named style utilizes </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the cell style -</p> + +<p>Serializes the cell style</p> </div> @@ -890,9 +871,8 @@ Serializes the cell style — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -940,7 +920,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:57 2011 by + Generated on Wed Nov 30 08:46:29 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Chart.html b/doc/Axlsx/Chart.html index d4fac7eb..2fe97954 100644 --- a/doc/Axlsx/Chart.html +++ b/doc/Axlsx/Chart.html @@ -97,16 +97,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Worksheet#add_chart is the recommended way to create charts for your -worksheets. -</p> + <div class='inline'> +<p>Worksheet#add_chart is the recommended way to create charts for your +worksheets.</p> </div> </div> -<p> -A Chart is the superclass for specific charts -</p> + +<p>A Chart is the superclass for specific charts</p> </div> @@ -149,9 +147,8 @@ A Chart is the superclass for specific charts - <span class="summary_desc"><div class='inline'><p> -A reference to the graphic frame that owns this chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>A reference to the graphic frame that owns this chart.</p> </div></span> </li> @@ -176,9 +173,8 @@ A reference to the graphic frame that owns this chart. - <span class="summary_desc"><div class='inline'><p> -A collection of series objects that are applied to the chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>A collection of series objects that are applied to the chart.</p> </div></span> </li> @@ -203,9 +199,8 @@ A collection of series objects that are applied to the chart. - <span class="summary_desc"><div class='inline'><p> -The type of series to use for this chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>The type of series to use for this chart.</p> </div></span> </li> @@ -230,9 +225,8 @@ The type of series to use for this chart. - <span class="summary_desc"><div class='inline'><p> -Show the legend in the chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>Show the legend in the chart.</p> </div></span> </li> @@ -257,9 +251,8 @@ Show the legend in the chart. - <span class="summary_desc"><div class='inline'><p> -The style for the chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>The style for the chart.</p> </div></span> </li> @@ -284,9 +277,8 @@ The style for the chart. - <span class="summary_desc"><div class='inline'><p> -The title object for the chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>The title object for the chart.</p> </div></span> </li> @@ -311,9 +303,8 @@ The title object for the chart. - <span class="summary_desc"><div class='inline'><p> -The 3D view properties for the chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>The 3D view properties for the chart.</p> </div></span> </li> @@ -348,9 +339,8 @@ The 3D view properties for the chart. - <span class="summary_desc"><div class='inline'><p> -Adds a new series to the chart’s series collection. -</p> + <span class="summary_desc"><div class='inline'> +<p>Adds a new series to the chart’s series collection.</p> </div></span> </li> @@ -372,10 +362,9 @@ Adds a new series to the chart’s series collection. - <span class="summary_desc"><div class='inline'><p> -This is a short cut method to set the end anchor position If you need finer -granularity in positioning use graphic_frame.anchor.to.colOff / rowOff. -</p> + <span class="summary_desc"><div class='inline'> +<p>This is a short cut method to set the end anchor position If you need finer +granularity in positioning use graphic_frame.anchor.to.colOff / rowOff.</p> </div></span> </li> @@ -397,10 +386,9 @@ granularity in positioning use graphic_frame.anchor.to.colOff / rowOff. - <span class="summary_desc"><div class='inline'><p> -backwards compatibility to allow chart.to and chart.from access to anchor -markers. -</p> + <span class="summary_desc"><div class='inline'> +<p>backwards compatibility to allow chart.to and chart.from access to anchor +markers.</p> </div></span> </li> @@ -422,9 +410,8 @@ markers. - <span class="summary_desc"><div class='inline'><p> -The index of this chart in the workbooks charts collection. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of this chart in the workbooks charts collection.</p> </div></span> </li> @@ -448,9 +435,8 @@ The index of this chart in the workbooks charts collection. - <span class="summary_desc"><div class='inline'><p> -Creates a new chart object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new chart object.</p> </div></span> </li> @@ -472,9 +458,8 @@ Creates a new chart object. - <span class="summary_desc"><div class='inline'><p> -The part name for this chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>The part name for this chart.</p> </div></span> </li> @@ -496,11 +481,10 @@ The part name for this chart. - <span class="summary_desc"><div class='inline'><p> -This is a short cut method to set the start anchor position If you need + <span class="summary_desc"><div class='inline'> +<p>This is a short cut method to set the start anchor position If you need finer granularity in positioning use graphic_frame.anchor.from.colOff / -rowOff. -</p> +rowOff.</p> </div></span> </li> @@ -522,10 +506,9 @@ rowOff. - <span class="summary_desc"><div class='inline'><p> -backwards compatibility to allow chart.to and chart.from access to anchor -markers. -</p> + <span class="summary_desc"><div class='inline'> +<p>backwards compatibility to allow chart.to and chart.from access to anchor +markers.</p> </div></span> </li> @@ -547,9 +530,8 @@ markers. - <span class="summary_desc"><div class='inline'><p> -Chart Serialization serializes the chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>Chart Serialization serializes the chart.</p> </div></span> </li> @@ -570,9 +552,8 @@ Chart Serialization serializes the chart. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new chart object -</p> + +<p>Creates a new chart object</p> </div> @@ -591,9 +572,8 @@ Creates a new chart object — - <div class='inline'><p> -The frame that holds this chart. -</p> + <div class='inline'> +<p>The frame that holds this chart.</p> </div> </li> @@ -610,9 +590,8 @@ The frame that holds this chart. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -674,9 +653,8 @@ a customizable set of options — - <div class='inline'><p> -the object that the method was called on -</p> + <div class='inline'> +<p>the object that the method was called on</p> </div> </li> @@ -744,9 +722,8 @@ the object that the method was called on </p><div class="docstring"> <div class="discussion"> - <p> -A reference to the graphic frame that owns this chart -</p> + +<p>A reference to the graphic frame that owns this chart</p> </div> @@ -801,9 +778,8 @@ A reference to the graphic frame that owns this chart </p><div class="docstring"> <div class="discussion"> - <p> -A collection of series objects that are applied to the chart -</p> + +<p>A collection of series objects that are applied to the chart</p> </div> @@ -858,9 +834,8 @@ A collection of series objects that are applied to the chart </p><div class="docstring"> <div class="discussion"> - <p> -The type of series to use for this chart. -</p> + +<p>The type of series to use for this chart.</p> </div> @@ -915,9 +890,8 @@ The type of series to use for this chart. </p><div class="docstring"> <div class="discussion"> - <p> -Show the legend in the chart -</p> + +<p>Show the legend in the chart</p> </div> @@ -972,9 +946,8 @@ Show the legend in the chart </p><div class="docstring"> <div class="discussion"> - <p> -The style for the chart. see ECMA Part 1 §21.2.2.196 -</p> + +<p>The style for the chart. see ECMA Part 1 §21.2.2.196</p> </div> @@ -1029,9 +1002,8 @@ The style for the chart. see ECMA Part 1 §21.2.2.196 </p><div class="docstring"> <div class="discussion"> - <p> -The title object for the chart. -</p> + +<p>The title object for the chart.</p> </div> @@ -1086,9 +1058,8 @@ The title object for the chart. </p><div class="docstring"> <div class="discussion"> - <p> -The 3D view properties for the chart -</p> + +<p>The 3D view properties for the chart</p> </div> @@ -1134,9 +1105,8 @@ The 3D view properties for the chart </p><div class="docstring"> <div class="discussion"> - <p> -Adds a new series to the chart’s series collection. -</p> + +<p>Adds a new series to the chart’s series collection.</p> </div> @@ -1197,10 +1167,9 @@ Adds a new series to the chart’s series collection. </p><div class="docstring"> <div class="discussion"> - <p> -This is a short cut method to set the end anchor position If you need finer -granularity in positioning use graphic_frame.anchor.to.colOff / rowOff -</p> + +<p>This is a short cut method to set the end anchor position If you need finer +granularity in positioning use graphic_frame.anchor.to.colOff / rowOff</p> </div> @@ -1219,9 +1188,8 @@ granularity in positioning use graphic_frame.anchor.to.colOff / rowOff — - <div class='inline'><p> -The column -</p> + <div class='inline'> +<p>The column</p> </div> </li> @@ -1236,9 +1204,8 @@ The column — - <div class='inline'><p> -The row -</p> + <div class='inline'> +<p>The row</p> </div> </li> @@ -1295,16 +1262,14 @@ The row <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -This will be disconinued in version 2.0.0. please use the start_at method -</p> + <div class='inline'> +<p>This will be disconinued in version 2.0.0. please use the start_at method</p> </div> </div> -<p> -backwards compatibility to allow chart.to and chart.from access to anchor -markers -</p> + +<p>backwards compatibility to allow chart.to and chart.from access to anchor +markers</p> </div> @@ -1343,9 +1308,8 @@ markers </p><div class="docstring"> <div class="discussion"> - <p> -The index of this chart in the workbooks charts collection -</p> + +<p>The index of this chart in the workbooks charts collection</p> </div> @@ -1397,9 +1361,8 @@ The index of this chart in the workbooks charts collection </p><div class="docstring"> <div class="discussion"> - <p> -The part name for this chart -</p> + +<p>The part name for this chart</p> </div> @@ -1451,11 +1414,10 @@ The part name for this chart </p><div class="docstring"> <div class="discussion"> - <p> -This is a short cut method to set the start anchor position If you need + +<p>This is a short cut method to set the start anchor position If you need finer granularity in positioning use graphic_frame.anchor.from.colOff / -rowOff -</p> +rowOff</p> </div> @@ -1474,9 +1436,8 @@ rowOff — - <div class='inline'><p> -The column -</p> + <div class='inline'> +<p>The column</p> </div> </li> @@ -1491,9 +1452,8 @@ The column — - <div class='inline'><p> -The row -</p> + <div class='inline'> +<p>The row</p> </div> </li> @@ -1550,16 +1510,14 @@ The row <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -This will be disconinued in version 2.0.0. Please use the end_at method -</p> + <div class='inline'> +<p>This will be disconinued in version 2.0.0. Please use the end_at method</p> </div> </div> -<p> -backwards compatibility to allow chart.to and chart.from access to anchor -markers -</p> + +<p>backwards compatibility to allow chart.to and chart.from access to anchor +markers</p> </div> @@ -1598,9 +1556,8 @@ markers </p><div class="docstring"> <div class="discussion"> - <p> -Chart Serialization serializes the chart -</p> + +<p>Chart Serialization serializes the chart</p> </div> @@ -1675,7 +1632,7 @@ Chart Serialization serializes the chart </div> <div id="footer"> - Generated on Tue Nov 29 13:28:48 2011 by + Generated on Wed Nov 30 08:46:22 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Color.html b/doc/Axlsx/Color.html index b0149d6c..4229122e 100644 --- a/doc/Axlsx/Color.html +++ b/doc/Axlsx/Color.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The color class represents a color used for borders, fills an fonts -</p> + +<p>The color class represents a color used for borders, fills an fonts</p> </div> @@ -128,9 +127,8 @@ The color class represents a color used for borders, fills an fonts - <span class="summary_desc"><div class='inline'><p> -Determines if the color is system color dependant. -</p> + <span class="summary_desc"><div class='inline'> +<p>Determines if the color is system color dependant.</p> </div></span> </li> @@ -155,9 +153,8 @@ Determines if the color is system color dependant. - <span class="summary_desc"><div class='inline'><p> -The color as defined in rgb terms. -</p> + <span class="summary_desc"><div class='inline'> +<p>The color as defined in rgb terms.</p> </div></span> </li> @@ -182,9 +179,8 @@ The color as defined in rgb terms. - <span class="summary_desc"><div class='inline'><p> -The tint value. -</p> + <span class="summary_desc"><div class='inline'> +<p>The tint value.</p> </div></span> </li> @@ -221,9 +217,8 @@ The tint value. - <span class="summary_desc"><div class='inline'><p> -Creates a new Color object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Color object.</p> </div></span> </li> @@ -245,9 +240,8 @@ Creates a new Color object. - <span class="summary_desc"><div class='inline'><p> -Serializes the color. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the color.</p> </div></span> </li> @@ -268,9 +262,8 @@ Serializes the color. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Color object -</p> + +<p>Creates a new Color object</p> </div> @@ -291,9 +284,8 @@ Creates a new Color object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -382,9 +374,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -Determines if the color is system color dependant -</p> + +<p>Determines if the color is system color dependant</p> </div> @@ -442,16 +433,14 @@ Determines if the color is system color dependant <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -rgb colors need to conform to ST_UnsignedIntHex. That basically means put -‘FF’ before you color -</p> + <div class='inline'> +<p>rgb colors need to conform to ST_UnsignedIntHex. That basically means put +‘FF’ before you color</p> </div> </div> -<p> -The color as defined in rgb terms. -</p> + +<p>The color as defined in rgb terms.</p> </div> @@ -461,9 +450,8 @@ The color as defined in rgb terms. <div class="examples"> <h3>Examples:</h3> - <h4><div class='inline'><p> -rgb colors -</p> + <h4><div class='inline'> +<p>rgb colors</p> </div></h4> <pre class="example code"><span class='string val'>"FF000000"</span> <span class='is identifier id'>is</span> <span class='black identifier id'>black</span> <span class='string val'>"FFFFFFFF"</span> <span class='is identifier id'>is</span> <span class='white identifier id'>white</span> @@ -522,15 +510,13 @@ rgb colors <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -valid values are between -1.0 and 1.0 -</p> + <div class='inline'> +<p>valid values are between -1.0 and 1.0</p> </div> </div> -<p> -The tint value. -</p> + +<p>The tint value.</p> </div> @@ -589,9 +575,8 @@ The tint value. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the color -</p> + +<p>Serializes the color</p> </div> @@ -610,9 +595,8 @@ Serializes the color — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -656,7 +640,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:57 2011 by + Generated on Wed Nov 30 08:46:28 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/ContentType.html b/doc/Axlsx/ContentType.html index 1ee32909..aad3a085 100644 --- a/doc/Axlsx/ContentType.html +++ b/doc/Axlsx/ContentType.html @@ -96,10 +96,9 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -ContentTypes used in the package. This is automatcially managed by the -package package. -</p> + +<p>ContentTypes used in the package. This is automatcially managed by the +package package.</p> </div> @@ -150,9 +149,8 @@ package package. - <span class="summary_desc"><div class='inline'><p> -A new instance of ContentType. -</p> + <span class="summary_desc"><div class='inline'> +<p>A new instance of ContentType.</p> </div></span> </li> @@ -174,9 +172,8 @@ A new instance of ContentType. - <span class="summary_desc"><div class='inline'><p> -Generates the xml document for [Content_Types].xml. -</p> + <span class="summary_desc"><div class='inline'> +<p>Generates the xml document for [Content_Types].xml.</p> </div></span> </li> @@ -202,9 +199,8 @@ Generates the xml document for [Content_Types].xml. </p><div class="docstring"> <div class="discussion"> - <p> -A new instance of ContentType -</p> + +<p>A new instance of ContentType</p> </div> @@ -260,9 +256,8 @@ A new instance of ContentType </p><div class="docstring"> <div class="discussion"> - <p> -Generates the xml document for [Content_Types].xml -</p> + +<p>Generates the xml document for [Content_Types].xml</p> </div> @@ -280,9 +275,8 @@ Generates the xml document for [Content_Types].xml — - <div class='inline'><p> -The document as a string. -</p> + <div class='inline'> +<p>The document as a string.</p> </div> </li> @@ -326,7 +320,7 @@ The document as a string. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:51 2011 by + Generated on Wed Nov 30 08:46:24 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Core.html b/doc/Axlsx/Core.html index f489141f..69314818 100644 --- a/doc/Axlsx/Core.html +++ b/doc/Axlsx/Core.html @@ -97,15 +97,13 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Packages manage their own core object. -</p> + <div class='inline'> +<p>Packages manage their own core object.</p> </div> </div> -<p> -The core object for the package. -</p> + +<p>The core object for the package.</p> </div> @@ -144,9 +142,8 @@ The core object for the package. - <span class="summary_desc"><div class='inline'><p> -The author of the document. -</p> + <span class="summary_desc"><div class='inline'> +<p>The author of the document.</p> </div></span> </li> @@ -183,9 +180,8 @@ The author of the document. - <span class="summary_desc"><div class='inline'><p> -Creates a new Core object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Core object.</p> </div></span> </li> @@ -207,9 +203,8 @@ Creates a new Core object. - <span class="summary_desc"><div class='inline'><p> -Serializes the core object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the core object.</p> </div></span> </li> @@ -230,9 +225,8 @@ Serializes the core object. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Core object. -</p> + +<p>Creates a new Core object.</p> </div> @@ -253,9 +247,8 @@ Creates a new Core object. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -320,9 +313,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The author of the document. By default this is ‘axlsx’ -</p> + +<p>The author of the document. By default this is ‘axlsx’</p> </div> @@ -381,10 +373,9 @@ The author of the document. By default this is ‘axlsx’ </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the core object. The created dcterms item is set to the current -time when this method is called. -</p> + +<p>Serializes the core object. The created dcterms item is set to the current +time when this method is called.</p> </div> @@ -456,7 +447,7 @@ time when this method is called. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:58 2011 by + Generated on Wed Nov 30 08:46:29 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/DataTypeValidator.html b/doc/Axlsx/DataTypeValidator.html index d3698abf..b120e469 100644 --- a/doc/Axlsx/DataTypeValidator.html +++ b/doc/Axlsx/DataTypeValidator.html @@ -94,11 +94,10 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -Validate that the class of the value provided is either an instance or the + +<p>Validate that the class of the value provided is either an instance or the class of the allowed types and that any specified additional validation -returns true. -</p> +returns true.</p> </div> @@ -135,9 +134,8 @@ returns true. - <span class="summary_desc"><div class='inline'><p> -Perform validation. -</p> + <span class="summary_desc"><div class='inline'> +<p>Perform validation.</p> </div></span> </li> @@ -161,9 +159,8 @@ Perform validation. </p><div class="docstring"> <div class="discussion"> - <p> -Perform validation -</p> + +<p>Perform validation</p> </div> @@ -182,9 +179,8 @@ Perform validation — - <div class='inline'><p> -The name of what is being validated. This is included in the error message -</p> + <div class='inline'> +<p>The name of what is being validated. This is included in the error message</p> </div> </li> @@ -199,9 +195,8 @@ The name of what is being validated. This is included in the error message — - <div class='inline'><p> -A single class or array of classes that the value is validated against. -</p> + <div class='inline'> +<p>A single class or array of classes that the value is validated against.</p> </div> </li> @@ -218,9 +213,8 @@ A single class or array of classes that the value is validated against. — - <div class='inline'><p> -Any block that must evaluate to true for the value to be valid -</p> + <div class='inline'> +<p>Any block that must evaluate to true for the value to be valid</p> </div> </li> @@ -238,9 +232,8 @@ Any block that must evaluate to true for the value to be valid — - <div class='inline'><p> -true if validation succeeds. -</p> + <div class='inline'> +<p>true if validation succeeds.</p> </div> </li> @@ -257,10 +250,9 @@ true if validation succeeds. — - <div class='inline'><p> -Raised if the class of the value provided is not in the specified array of -types or the block passed returns false -</p> + <div class='inline'> +<p>Raised if the class of the value provided is not in the specified array of +types or the block passed returns false</p> </div> </li> @@ -315,7 +307,7 @@ types or the block passed returns false </div> <div id="footer"> - Generated on Tue Nov 29 13:28:56 2011 by + Generated on Wed Nov 30 08:46:27 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Default.html b/doc/Axlsx/Default.html index ad41bf7c..20e7aab2 100644 --- a/doc/Axlsx/Default.html +++ b/doc/Axlsx/Default.html @@ -94,10 +94,9 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -An default content part. These parts are automatically created by for you -based on the content of your package. -</p> + +<p>An default content part. These parts are automatically created by for you +based on the content of your package.</p> </div> @@ -129,9 +128,8 @@ based on the content of your package. - <span class="summary_desc"><div class='inline'><p> -The type of content. -</p> + <span class="summary_desc"><div class='inline'> +<p>The type of content.</p> </div></span> </li> @@ -156,9 +154,8 @@ The type of content. - <span class="summary_desc"><div class='inline'><p> -The extension of the content type. -</p> + <span class="summary_desc"><div class='inline'> +<p>The extension of the content type.</p> </div></span> </li> @@ -195,9 +192,8 @@ The extension of the content type. - <span class="summary_desc"><div class='inline'><p> -Creates a new Default object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Default object.</p> </div></span> </li> @@ -219,9 +215,8 @@ Creates a new Default object. - <span class="summary_desc"><div class='inline'><p> -Serializes the object to xml. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the object to xml.</p> </div></span> </li> @@ -242,9 +237,8 @@ Serializes the object to xml. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Default object -</p> + +<p>Creates a new Default object</p> </div> @@ -265,9 +259,8 @@ Creates a new Default object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -312,10 +305,9 @@ a customizable set of options — - <div class='inline'><p> -An argument error is raised if both Extension and ContentType are not -specified. -</p> + <div class='inline'> +<p>An argument error is raised if both Extension and ContentType are not +specified.</p> </div> </li> @@ -367,9 +359,8 @@ specified. </p><div class="docstring"> <div class="discussion"> - <p> -The type of content. -</p> + +<p>The type of content.</p> </div> @@ -424,9 +415,8 @@ The type of content. </p><div class="docstring"> <div class="discussion"> - <p> -The extension of the content type. -</p> + +<p>The extension of the content type.</p> </div> @@ -485,9 +475,8 @@ The extension of the content type. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the object to xml -</p> + +<p>Serializes the object to xml</p> </div> @@ -506,9 +495,8 @@ Serializes the object to xml — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -556,7 +544,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:57 2011 by + Generated on Wed Nov 30 08:46:28 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Drawing.html b/doc/Axlsx/Drawing.html index edabb5ed..b6e3ee72 100644 --- a/doc/Axlsx/Drawing.html +++ b/doc/Axlsx/Drawing.html @@ -97,19 +97,17 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage drawings is to use the Worksheet.add_chart -method. -</p> + <div class='inline'> +<p>The recommended way to manage drawings is to use the Worksheet.add_chart +method.</p> </div> </div> -<p> -A Drawing is a canvas for charts. Each worksheet has a single drawing that + +<p>A Drawing is a canvas for charts. Each worksheet has a single drawing that manages anchors. The anchors reference the charts via graphical frames. This is not a trivial relationship so please do follow the advice in the -note. see README for an example of how to create a chart. -</p> +note. see README for an example of how to create a chart.</p> </div> @@ -150,10 +148,9 @@ note. see README for an example of how to create a chart. - <span class="summary_desc"><div class='inline'><p> -A collection of anchors for this drawing only TwoCellAnchors are supported -in this version. -</p> + <span class="summary_desc"><div class='inline'> +<p>A collection of anchors for this drawing only TwoCellAnchors are supported +in this version.</p> </div></span> </li> @@ -178,9 +175,8 @@ in this version. - <span class="summary_desc"><div class='inline'><p> -The worksheet that owns the drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>The worksheet that owns the drawing.</p> </div></span> </li> @@ -215,9 +211,8 @@ The worksheet that owns the drawing. - <span class="summary_desc"><div class='inline'><p> -Adds a chart to the drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>Adds a chart to the drawing.</p> </div></span> </li> @@ -239,9 +234,8 @@ Adds a chart to the drawing. - <span class="summary_desc"><div class='inline'><p> -Adds an image to the chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>Adds an image to the chart.</p> </div></span> </li> @@ -263,9 +257,8 @@ Adds an image to the chart. - <span class="summary_desc"><div class='inline'><p> -An array of charts that are associated with this drawing’s anchors. -</p> + <span class="summary_desc"><div class='inline'> +<p>An array of charts that are associated with this drawing’s anchors.</p> </div></span> </li> @@ -287,10 +280,9 @@ An array of charts that are associated with this drawing’s anchors. - <span class="summary_desc"><div class='inline'><p> -An array of image objects that are associated with this drawing’s -anchors. -</p> + <span class="summary_desc"><div class='inline'> +<p>An array of image objects that are associated with this drawing’s +anchors.</p> </div></span> </li> @@ -312,10 +304,8 @@ anchors. - <span class="summary_desc"><div class='inline'><p> -The index of this drawing in the owning workbooks’s drawings -collection. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of this drawing in the owning workbooks’s drawings collection.</p> </div></span> </li> @@ -339,9 +329,8 @@ collection. - <span class="summary_desc"><div class='inline'><p> -Creates a new Drawing object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Drawing object.</p> </div></span> </li> @@ -363,9 +352,8 @@ Creates a new Drawing object. - <span class="summary_desc"><div class='inline'><p> -The part name for this drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>The part name for this drawing.</p> </div></span> </li> @@ -387,9 +375,8 @@ The part name for this drawing. - <span class="summary_desc"><div class='inline'><p> -The drawing’s relationships. -</p> + <span class="summary_desc"><div class='inline'> +<p>The drawing’s relationships.</p> </div></span> </li> @@ -411,9 +398,8 @@ The drawing’s relationships. - <span class="summary_desc"><div class='inline'><p> -The relational part name for this drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>The relational part name for this drawing.</p> </div></span> </li> @@ -435,9 +421,8 @@ The relational part name for this drawing. - <span class="summary_desc"><div class='inline'><p> -The relation reference id for this drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>The relation reference id for this drawing.</p> </div></span> </li> @@ -459,9 +444,8 @@ The relation reference id for this drawing. - <span class="summary_desc"><div class='inline'><p> -Serializes the drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the drawing.</p> </div></span> </li> @@ -482,9 +466,8 @@ Serializes the drawing. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Drawing object -</p> + +<p>Creates a new Drawing object</p> </div> @@ -503,9 +486,8 @@ Creates a new Drawing object — - <div class='inline'><p> -The worksheet that owns this drawing -</p> + <div class='inline'> +<p>The worksheet that owns this drawing</p> </div> </li> @@ -558,10 +540,9 @@ The worksheet that owns this drawing </p><div class="docstring"> <div class="discussion"> - <p> -A collection of anchors for this drawing only TwoCellAnchors are supported -in this version -</p> + +<p>A collection of anchors for this drawing only TwoCellAnchors are supported +in this version</p> </div> @@ -616,9 +597,8 @@ in this version </p><div class="docstring"> <div class="discussion"> - <p> -The worksheet that owns the drawing -</p> + +<p>The worksheet that owns the drawing</p> </div> @@ -680,16 +660,14 @@ The worksheet that owns the drawing <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage charts is to use Worksheet.add_chart. Please -refer to that method for documentation. -</p> + <div class='inline'> +<p>The recommended way to manage charts is to use Worksheet.add_chart. Please +refer to that method for documentation.</p> </div> </div> -<p> -Adds a chart to the drawing. -</p> + +<p>Adds a chart to the drawing.</p> </div> @@ -740,16 +718,14 @@ Adds a chart to the drawing. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage images is to use Worksheet.add_image. Please -refer to that method for documentation. -</p> + <div class='inline'> +<p>The recommended way to manage images is to use Worksheet.add_image. Please +refer to that method for documentation.</p> </div> </div> -<p> -Adds an image to the chart -</p> + +<p>Adds an image to the chart</p> </div> @@ -797,9 +773,8 @@ Adds an image to the chart </p><div class="docstring"> <div class="discussion"> - <p> -An array of charts that are associated with this drawing’s anchors -</p> + +<p>An array of charts that are associated with this drawing’s anchors</p> </div> @@ -853,10 +828,8 @@ An array of charts that are associated with this drawing’s anchors </p><div class="docstring"> <div class="discussion"> - <p> -An array of image objects that are associated with this drawing’s -anchors -</p> + +<p>An array of image objects that are associated with this drawing’s anchors</p> </div> @@ -910,10 +883,8 @@ anchors </p><div class="docstring"> <div class="discussion"> - <p> -The index of this drawing in the owning workbooks’s drawings -collection. -</p> + +<p>The index of this drawing in the owning workbooks’s drawings collection.</p> </div> @@ -965,9 +936,8 @@ collection. </p><div class="docstring"> <div class="discussion"> - <p> -The part name for this drawing -</p> + +<p>The part name for this drawing</p> </div> @@ -1019,9 +989,8 @@ The part name for this drawing </p><div class="docstring"> <div class="discussion"> - <p> -The drawing’s relationships. -</p> + +<p>The drawing’s relationships.</p> </div> @@ -1087,9 +1056,8 @@ The drawing’s relationships. </p><div class="docstring"> <div class="discussion"> - <p> -The relational part name for this drawing -</p> + +<p>The relational part name for this drawing</p> </div> @@ -1141,9 +1109,8 @@ The relational part name for this drawing </p><div class="docstring"> <div class="discussion"> - <p> -The relation reference id for this drawing -</p> + +<p>The relation reference id for this drawing</p> </div> @@ -1195,9 +1162,8 @@ The relation reference id for this drawing </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the drawing -</p> + +<p>Serializes the drawing</p> </div> @@ -1255,7 +1221,7 @@ Serializes the drawing </div> <div id="footer"> - Generated on Tue Nov 29 13:28:49 2011 by + Generated on Wed Nov 30 08:46:23 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Fill.html b/doc/Axlsx/Fill.html index 6f6b98b0..d2ae770c 100644 --- a/doc/Axlsx/Fill.html +++ b/doc/Axlsx/Fill.html @@ -97,17 +97,15 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles in your workbook is to use -Styles#add_style. -</p> + <div class='inline'> +<p>The recommended way to manage styles in your workbook is to use +Styles#add_style.</p> </div> </div> -<p> -The Fill is a formatting object that manages the background color, and -pattern for cells. -</p> + +<p>The Fill is a formatting object that manages the background color, and +pattern for cells.</p> </div> @@ -150,9 +148,8 @@ pattern for cells. - <span class="summary_desc"><div class='inline'><p> -The type of fill. -</p> + <span class="summary_desc"><div class='inline'> +<p>The type of fill.</p> </div></span> </li> @@ -189,9 +186,8 @@ The type of fill. - <span class="summary_desc"><div class='inline'><p> -Creates a new Fill object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Fill object.</p> </div></span> </li> @@ -213,9 +209,8 @@ Creates a new Fill object. - <span class="summary_desc"><div class='inline'><p> -Serializes the fill. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the fill.</p> </div></span> </li> @@ -236,9 +231,8 @@ Serializes the fill. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Fill object -</p> + +<p>Creates a new Fill object</p> </div> @@ -271,9 +265,8 @@ Creates a new Fill object — - <div class='inline'><p> -if the fill_type parameter is not a PatternFill or a GradientFill instance -</p> + <div class='inline'> +<p>if the fill_type parameter is not a PatternFill or a GradientFill instance</p> </div> </li> @@ -319,9 +312,8 @@ if the fill_type parameter is not a PatternFill or a GradientFill instance </p><div class="docstring"> <div class="discussion"> - <p> -The type of fill -</p> + +<p>The type of fill</p> </div> @@ -380,9 +372,8 @@ The type of fill </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the fill -</p> + +<p>Serializes the fill</p> </div> @@ -401,9 +392,8 @@ Serializes the fill — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -451,7 +441,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:29:02 2011 by + Generated on Wed Nov 30 08:46:33 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Font.html b/doc/Axlsx/Font.html index df03d441..efc6b488 100644 --- a/doc/Axlsx/Font.html +++ b/doc/Axlsx/Font.html @@ -97,15 +97,13 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage fonts, and other styles is Styles#add_style -</p> + <div class='inline'> +<p>The recommended way to manage fonts, and other styles is Styles#add_style</p> </div> </div> -<p> -The Font class details a font instance for use in styling cells. -</p> + +<p>The Font class details a font instance for use in styling cells.</p> </div> @@ -144,9 +142,8 @@ The Font class details a font instance for use in styling cells. - <span class="summary_desc"><div class='inline'><p> -Indicates if the font should be rendered in <b>bold</b>. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates if the font should be rendered in <strong>bold</strong>.</p> </div></span> </li> @@ -171,9 +168,8 @@ Indicates if the font should be rendered in <b>bold</b>. - <span class="summary_desc"><div class='inline'><p> -The charset of the font. -</p> + <span class="summary_desc"><div class='inline'> +<p>The charset of the font.</p> </div></span> </li> @@ -198,9 +194,8 @@ The charset of the font. - <span class="summary_desc"><div class='inline'><p> -The color of the font. -</p> + <span class="summary_desc"><div class='inline'> +<p>The color of the font.</p> </div></span> </li> @@ -225,9 +220,8 @@ The color of the font. - <span class="summary_desc"><div class='inline'><p> -Indicates if the font should be condensed. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates if the font should be condensed.</p> </div></span> </li> @@ -252,9 +246,8 @@ Indicates if the font should be condensed. - <span class="summary_desc"><div class='inline'><p> -The font’s extend property. -</p> + <span class="summary_desc"><div class='inline'> +<p>The font’s extend property.</p> </div></span> </li> @@ -279,9 +272,8 @@ The font’s extend property. - <span class="summary_desc"><div class='inline'><p> -The font’s family. -</p> + <span class="summary_desc"><div class='inline'> +<p>The font’s family.</p> </div></span> </li> @@ -306,9 +298,8 @@ The font’s family. - <span class="summary_desc"><div class='inline'><p> -Indicates if the font should be rendered italicized. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates if the font should be rendered italicized.</p> </div></span> </li> @@ -333,9 +324,8 @@ Indicates if the font should be rendered italicized. - <span class="summary_desc"><div class='inline'><p> -The name of the font. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name of the font.</p> </div></span> </li> @@ -360,9 +350,8 @@ The name of the font. - <span class="summary_desc"><div class='inline'><p> -Indicates if the font should be rendered with an outline. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates if the font should be rendered with an outline.</p> </div></span> </li> @@ -387,9 +376,8 @@ Indicates if the font should be rendered with an outline. - <span class="summary_desc"><div class='inline'><p> -Indicates if the font should be rendered with a shadow. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates if the font should be rendered with a shadow.</p> </div></span> </li> @@ -414,9 +402,8 @@ Indicates if the font should be rendered with a shadow. - <span class="summary_desc"><div class='inline'><p> -Indicates if the font should be rendered with a strikthrough. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates if the font should be rendered with a strikthrough.</p> </div></span> </li> @@ -441,9 +428,8 @@ Indicates if the font should be rendered with a strikthrough. - <span class="summary_desc"><div class='inline'><p> -The size of the font. -</p> + <span class="summary_desc"><div class='inline'> +<p>The size of the font.</p> </div></span> </li> @@ -480,9 +466,8 @@ The size of the font. - <span class="summary_desc"><div class='inline'><p> -Creates a new Font. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Font.</p> </div></span> </li> @@ -504,9 +489,8 @@ Creates a new Font. - <span class="summary_desc"><div class='inline'><p> -Serializes the fill. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the fill.</p> </div></span> </li> @@ -527,9 +511,8 @@ Serializes the fill. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Font -</p> + +<p>Creates a new Font</p> </div> @@ -550,9 +533,8 @@ Creates a new Font — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -729,9 +711,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -Indicates if the font should be rendered in <b>bold</b> -</p> + +<p>Indicates if the font should be rendered in <strong>bold</strong></p> </div> @@ -789,37 +770,35 @@ Indicates if the font should be rendered in <b>bold</b> <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The following values are defined in the OOXML specification and are OS -dependant values -</p> -<pre class="code"> - <span class='integer val'>0</span> <span class='ANSI_CHARSET constant id'>ANSI_CHARSET</span> - <span class='integer val'>1</span> <span class='DEFAULT_CHARSET constant id'>DEFAULT_CHARSET</span> - <span class='integer val'>2</span> <span class='SYMBOL_CHARSET constant id'>SYMBOL_CHARSET</span> - <span class='integer val'>77</span> <span class='MAC_CHARSET constant id'>MAC_CHARSET</span> - <span class='integer val'>128</span> <span class='SHIFTJIS_CHARSET constant id'>SHIFTJIS_CHARSET</span> - <span class='integer val'>129</span> <span class='HANGUL_CHARSET constant id'>HANGUL_CHARSET</span> - <span class='integer val'>130</span> <span class='JOHAB_CHARSET constant id'>JOHAB_CHARSET</span> - <span class='integer val'>134</span> <span class='GB2312_CHARSET constant id'>GB2312_CHARSET</span> - <span class='integer val'>136</span> <span class='CHINESEBIG5_CHARSET constant id'>CHINESEBIG5_CHARSET</span> - <span class='integer val'>161</span> <span class='GREEK_CHARSET constant id'>GREEK_CHARSET</span> - <span class='integer val'>162</span> <span class='TURKISH_CHARSET constant id'>TURKISH_CHARSET</span> - <span class='integer val'>163</span> <span class='VIETNAMESE_CHARSET constant id'>VIETNAMESE_CHARSET</span> - <span class='integer val'>177</span> <span class='HEBREW_CHARSET constant id'>HEBREW_CHARSET</span> - <span class='integer val'>178</span> <span class='ARABIC_CHARSET constant id'>ARABIC_CHARSET</span> - <span class='integer val'>186</span> <span class='BALTIC_CHARSET constant id'>BALTIC_CHARSET</span> - <span class='integer val'>204</span> <span class='RUSSIAN_CHARSET constant id'>RUSSIAN_CHARSET</span> - <span class='integer val'>222</span> <span class='THAI_CHARSET constant id'>THAI_CHARSET</span> - <span class='integer val'>238</span> <span class='EASTEUROPE_CHARSET constant id'>EASTEUROPE_CHARSET</span> - <span class='integer val'>255</span> <span class='OEM_CHARSET constant id'>OEM_CHARSET</span> + <div class='inline'> +<p>The following values are defined in the OOXML specification and are OS +dependant values</p> + +<pre class="code"><span class='integer val'>0</span> <span class='ANSI_CHARSET constant id'>ANSI_CHARSET</span> +<span class='integer val'>1</span> <span class='DEFAULT_CHARSET constant id'>DEFAULT_CHARSET</span> +<span class='integer val'>2</span> <span class='SYMBOL_CHARSET constant id'>SYMBOL_CHARSET</span> +<span class='integer val'>77</span> <span class='MAC_CHARSET constant id'>MAC_CHARSET</span> +<span class='integer val'>128</span> <span class='SHIFTJIS_CHARSET constant id'>SHIFTJIS_CHARSET</span> +<span class='integer val'>129</span> <span class='HANGUL_CHARSET constant id'>HANGUL_CHARSET</span> +<span class='integer val'>130</span> <span class='JOHAB_CHARSET constant id'>JOHAB_CHARSET</span> +<span class='integer val'>134</span> <span class='GB2312_CHARSET constant id'>GB2312_CHARSET</span> +<span class='integer val'>136</span> <span class='CHINESEBIG5_CHARSET constant id'>CHINESEBIG5_CHARSET</span> +<span class='integer val'>161</span> <span class='GREEK_CHARSET constant id'>GREEK_CHARSET</span> +<span class='integer val'>162</span> <span class='TURKISH_CHARSET constant id'>TURKISH_CHARSET</span> +<span class='integer val'>163</span> <span class='VIETNAMESE_CHARSET constant id'>VIETNAMESE_CHARSET</span> +<span class='integer val'>177</span> <span class='HEBREW_CHARSET constant id'>HEBREW_CHARSET</span> +<span class='integer val'>178</span> <span class='ARABIC_CHARSET constant id'>ARABIC_CHARSET</span> +<span class='integer val'>186</span> <span class='BALTIC_CHARSET constant id'>BALTIC_CHARSET</span> +<span class='integer val'>204</span> <span class='RUSSIAN_CHARSET constant id'>RUSSIAN_CHARSET</span> +<span class='integer val'>222</span> <span class='THAI_CHARSET constant id'>THAI_CHARSET</span> +<span class='integer val'>238</span> <span class='EASTEUROPE_CHARSET constant id'>EASTEUROPE_CHARSET</span> +<span class='integer val'>255</span> <span class='OEM_CHARSET constant id'>OEM_CHARSET</span> </pre> </div> </div> -<p> -The charset of the font -</p> + +<p>The charset of the font</p> </div> @@ -874,9 +853,8 @@ The charset of the font </p><div class="docstring"> <div class="discussion"> - <p> -The color of the font -</p> + +<p>The color of the font</p> </div> @@ -931,9 +909,8 @@ The color of the font </p><div class="docstring"> <div class="discussion"> - <p> -Indicates if the font should be condensed -</p> + +<p>Indicates if the font should be condensed</p> </div> @@ -988,9 +965,8 @@ Indicates if the font should be condensed </p><div class="docstring"> <div class="discussion"> - <p> -The font’s extend property -</p> + +<p>The font’s extend property</p> </div> @@ -1048,24 +1024,22 @@ The font’s extend property <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The following are defined OOXML specification -</p> -<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> - <span class='integer val'>1</span> <span class='Roman constant id'>Roman</span> - <span class='integer val'>2</span> <span class='Swiss constant id'>Swiss</span> - <span class='integer val'>3</span> <span class='Modern constant id'>Modern</span> - <span class='integer val'>4</span> <span class='Script constant id'>Script</span> - <span class='integer val'>5</span> <span class='Decorative constant id'>Decorative</span> - <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> + <div class='inline'> +<p>The following are defined OOXML specification</p> + +<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> +<span class='integer val'>1</span> <span class='Roman constant id'>Roman</span> +<span class='integer val'>2</span> <span class='Swiss constant id'>Swiss</span> +<span class='integer val'>3</span> <span class='Modern constant id'>Modern</span> +<span class='integer val'>4</span> <span class='Script constant id'>Script</span> +<span class='integer val'>5</span> <span class='Decorative constant id'>Decorative</span> +<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> </pre> </div> </div> -<p> -The font’s family -</p> + +<p>The font’s family</p> </div> @@ -1120,9 +1094,8 @@ The font’s family </p><div class="docstring"> <div class="discussion"> - <p> -Indicates if the font should be rendered italicized -</p> + +<p>Indicates if the font should be rendered italicized</p> </div> @@ -1177,9 +1150,8 @@ Indicates if the font should be rendered italicized </p><div class="docstring"> <div class="discussion"> - <p> -The name of the font -</p> + +<p>The name of the font</p> </div> @@ -1234,9 +1206,8 @@ The name of the font </p><div class="docstring"> <div class="discussion"> - <p> -Indicates if the font should be rendered with an outline -</p> + +<p>Indicates if the font should be rendered with an outline</p> </div> @@ -1291,9 +1262,8 @@ Indicates if the font should be rendered with an outline </p><div class="docstring"> <div class="discussion"> - <p> -Indicates if the font should be rendered with a shadow -</p> + +<p>Indicates if the font should be rendered with a shadow</p> </div> @@ -1348,9 +1318,8 @@ Indicates if the font should be rendered with a shadow </p><div class="docstring"> <div class="discussion"> - <p> -Indicates if the font should be rendered with a strikthrough -</p> + +<p>Indicates if the font should be rendered with a strikthrough</p> </div> @@ -1405,9 +1374,8 @@ Indicates if the font should be rendered with a strikthrough </p><div class="docstring"> <div class="discussion"> - <p> -The size of the font. -</p> + +<p>The size of the font.</p> </div> @@ -1466,9 +1434,8 @@ The size of the font. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the fill -</p> + +<p>Serializes the fill</p> </div> @@ -1487,9 +1454,8 @@ Serializes the fill — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -1545,7 +1511,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:56 2011 by + Generated on Wed Nov 30 08:46:27 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/GradientFill.html b/doc/Axlsx/GradientFill.html index 35d21972..30fa6143 100644 --- a/doc/Axlsx/GradientFill.html +++ b/doc/Axlsx/GradientFill.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -A GradientFill defines the color and positioning for gradiant cell fill. -</p> + +<p>A GradientFill defines the color and positioning for gradiant cell fill.</p> </div> @@ -135,9 +134,8 @@ A GradientFill defines the color and positioning for gradiant cell fill. - <span class="summary_desc"><div class='inline'><p> -Percentage format bottom. -</p> + <span class="summary_desc"><div class='inline'> +<p>Percentage format bottom.</p> </div></span> </li> @@ -162,9 +160,8 @@ Percentage format bottom. - <span class="summary_desc"><div class='inline'><p> -Angle of the linear gradient. -</p> + <span class="summary_desc"><div class='inline'> +<p>Angle of the linear gradient.</p> </div></span> </li> @@ -189,9 +186,8 @@ Angle of the linear gradient. - <span class="summary_desc"><div class='inline'><p> -Percentage format left. -</p> + <span class="summary_desc"><div class='inline'> +<p>Percentage format left.</p> </div></span> </li> @@ -216,9 +212,8 @@ Percentage format left. - <span class="summary_desc"><div class='inline'><p> -Percentage format right. -</p> + <span class="summary_desc"><div class='inline'> +<p>Percentage format right.</p> </div></span> </li> @@ -243,9 +238,8 @@ Percentage format right. - <span class="summary_desc"><div class='inline'><p> -Collection of stop objects. -</p> + <span class="summary_desc"><div class='inline'> +<p>Collection of stop objects.</p> </div></span> </li> @@ -270,9 +264,8 @@ Collection of stop objects. - <span class="summary_desc"><div class='inline'><p> -Percentage format top. -</p> + <span class="summary_desc"><div class='inline'> +<p>Percentage format top.</p> </div></span> </li> @@ -297,9 +290,8 @@ Percentage format top. - <span class="summary_desc"><div class='inline'><p> -The type of gradient. -</p> + <span class="summary_desc"><div class='inline'> +<p>The type of gradient.</p> </div></span> </li> @@ -336,9 +328,8 @@ The type of gradient. - <span class="summary_desc"><div class='inline'><p> -Creates a new GradientFill object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new GradientFill object.</p> </div></span> </li> @@ -360,9 +351,8 @@ Creates a new GradientFill object. - <span class="summary_desc"><div class='inline'><p> -Serializes the gradientFill. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the gradientFill.</p> </div></span> </li> @@ -383,9 +373,8 @@ Serializes the gradientFill. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new GradientFill object -</p> + +<p>Creates a new GradientFill object</p> </div> @@ -406,9 +395,8 @@ Creates a new GradientFill object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -526,9 +514,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -Percentage format bottom -</p> + +<p>Percentage format bottom</p> </div> @@ -583,9 +570,8 @@ Percentage format bottom </p><div class="docstring"> <div class="discussion"> - <p> -Angle of the linear gradient -</p> + +<p>Angle of the linear gradient</p> </div> @@ -640,9 +626,8 @@ Angle of the linear gradient </p><div class="docstring"> <div class="discussion"> - <p> -Percentage format left -</p> + +<p>Percentage format left</p> </div> @@ -697,9 +682,8 @@ Percentage format left </p><div class="docstring"> <div class="discussion"> - <p> -Percentage format right -</p> + +<p>Percentage format right</p> </div> @@ -754,9 +738,8 @@ Percentage format right </p><div class="docstring"> <div class="discussion"> - <p> -Collection of stop objects -</p> + +<p>Collection of stop objects</p> </div> @@ -811,9 +794,8 @@ Collection of stop objects </p><div class="docstring"> <div class="discussion"> - <p> -Percentage format top -</p> + +<p>Percentage format top</p> </div> @@ -871,19 +853,17 @@ Percentage format top <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -valid options are -</p> -<pre class="code"> - <span class='symbol val'>:linear</span> - <span class='symbol val'>:path</span> + <div class='inline'> +<p>valid options are</p> + +<pre class="code"><span class='symbol val'>:linear</span> +<span class='symbol val'>:path</span> </pre> </div> </div> -<p> -The type of gradient. -</p> + +<p>The type of gradient.</p> </div> @@ -942,9 +922,8 @@ The type of gradient. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the gradientFill -</p> + +<p>Serializes the gradientFill</p> </div> @@ -963,9 +942,8 @@ Serializes the gradientFill — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -1017,7 +995,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:56 2011 by + Generated on Wed Nov 30 08:46:27 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/GradientStop.html b/doc/Axlsx/GradientStop.html index b1067f0e..c767a85e 100644 --- a/doc/Axlsx/GradientStop.html +++ b/doc/Axlsx/GradientStop.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The GradientStop object represents a color point in a gradient. -</p> + +<p>The GradientStop object represents a color point in a gradient.</p> </div> @@ -135,9 +134,8 @@ The GradientStop object represents a color point in a gradient. - <span class="summary_desc"><div class='inline'><p> -The color for this gradient stop. -</p> + <span class="summary_desc"><div class='inline'> +<p>The color for this gradient stop.</p> </div></span> </li> @@ -162,9 +160,8 @@ The color for this gradient stop. - <span class="summary_desc"><div class='inline'><p> -The position of the color. -</p> + <span class="summary_desc"><div class='inline'> +<p>The position of the color.</p> </div></span> </li> @@ -201,9 +198,8 @@ The position of the color. - <span class="summary_desc"><div class='inline'><p> -Creates a new GradientStop object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new GradientStop object.</p> </div></span> </li> @@ -225,9 +221,8 @@ Creates a new GradientStop object. - <span class="summary_desc"><div class='inline'><p> -Serializes the gradientStop. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the gradientStop.</p> </div></span> </li> @@ -248,9 +243,8 @@ Serializes the gradientStop. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new GradientStop object -</p> + +<p>Creates a new GradientStop object</p> </div> @@ -325,9 +319,8 @@ Creates a new GradientStop object </p><div class="docstring"> <div class="discussion"> - <p> -The color for this gradient stop -</p> + +<p>The color for this gradient stop</p> </div> @@ -389,9 +382,8 @@ The color for this gradient stop </p><div class="docstring"> <div class="discussion"> - <p> -The position of the color -</p> + +<p>The position of the color</p> </div> @@ -450,9 +442,8 @@ The position of the color </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the gradientStop -</p> + +<p>Serializes the gradientStop</p> </div> @@ -471,9 +462,8 @@ Serializes the gradientStop — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -517,7 +507,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:44 2011 by + Generated on Wed Nov 30 08:46:36 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/GraphicFrame.html b/doc/Axlsx/GraphicFrame.html index 71ff8747..60a775d8 100644 --- a/doc/Axlsx/GraphicFrame.html +++ b/doc/Axlsx/GraphicFrame.html @@ -97,15 +97,13 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage charts is Worksheet#add_chart -</p> + <div class='inline'> +<p>The recommended way to manage charts is Worksheet#add_chart</p> </div> </div> -<p> -A graphic frame defines a container for a chart object -</p> + +<p>A graphic frame defines a container for a chart object</p> </div> @@ -144,9 +142,8 @@ A graphic frame defines a container for a chart object - <span class="summary_desc"><div class='inline'><p> -A anchor that holds this frame. -</p> + <span class="summary_desc"><div class='inline'> +<p>A anchor that holds this frame.</p> </div></span> </li> @@ -171,9 +168,8 @@ A anchor that holds this frame. - <span class="summary_desc"><div class='inline'><p> -A reference to the chart object associated with this frame. -</p> + <span class="summary_desc"><div class='inline'> +<p>A reference to the chart object associated with this frame.</p> </div></span> </li> @@ -210,9 +206,8 @@ A reference to the chart object associated with this frame. - <span class="summary_desc"><div class='inline'><p> -Creates a new GraphicFrame object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new GraphicFrame object.</p> </div></span> </li> @@ -234,9 +229,8 @@ Creates a new GraphicFrame object. - <span class="summary_desc"><div class='inline'><p> -The relationship id for this graphic. -</p> + <span class="summary_desc"><div class='inline'> +<p>The relationship id for this graphic.</p> </div></span> </li> @@ -258,9 +252,8 @@ The relationship id for this graphic. - <span class="summary_desc"><div class='inline'><p> -Serializes the graphic frame. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the graphic frame.</p> </div></span> </li> @@ -281,9 +274,8 @@ Serializes the graphic frame. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new GraphicFrame object -</p> + +<p>Creates a new GraphicFrame object</p> </div> @@ -360,9 +352,8 @@ Creates a new GraphicFrame object </p><div class="docstring"> <div class="discussion"> - <p> -A anchor that holds this frame -</p> + +<p>A anchor that holds this frame</p> </div> @@ -417,9 +408,8 @@ A anchor that holds this frame </p><div class="docstring"> <div class="discussion"> - <p> -A reference to the chart object associated with this frame -</p> + +<p>A reference to the chart object associated with this frame</p> </div> @@ -478,9 +468,8 @@ A reference to the chart object associated with this frame </p><div class="docstring"> <div class="discussion"> - <p> -The relationship id for this graphic -</p> + +<p>The relationship id for this graphic</p> </div> @@ -532,9 +521,8 @@ The relationship id for this graphic </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the graphic frame -</p> + +<p>Serializes the graphic frame</p> </div> @@ -553,9 +541,8 @@ Serializes the graphic frame — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -633,7 +620,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:56 2011 by + Generated on Wed Nov 30 08:46:28 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Line3DChart.html b/doc/Axlsx/Line3DChart.html index 5c05b8bd..a0995552 100644 --- a/doc/Axlsx/Line3DChart.html +++ b/doc/Axlsx/Line3DChart.html @@ -96,10 +96,9 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The Line3DChart is a three dimentional line chart (who would have guessed?) -that you can add to your worksheet. -</p> + +<p>The Line3DChart is a three dimentional line chart (who would have guessed?) +that you can add to your worksheet.</p> </div> @@ -109,9 +108,8 @@ that you can add to your worksheet. <div class="examples"> <h3>Examples:</h3> - <h4><div class='inline'><p> -Creating a chart -</p> + <h4><div class='inline'> +<p>Creating a chart</p> </div></h4> <pre class="example code"><span class='comment val'># This example creates a line in a single sheet.</span> <span class='require identifier id'>require</span> <span class='string val'>"rubygems"</span> <span class='comment val'># if that is your preferred way to manage gems!</span> @@ -151,9 +149,8 @@ Creating a chart <dt id="GAP_AMOUNT_PERCENT-constant" class="">GAP_AMOUNT_PERCENT = <div class="docstring"> <div class="discussion"> - <p> -validation regex for gap amount percent -</p> + +<p>validation regex for gap amount percent</p> </div> @@ -196,9 +193,8 @@ validation regex for gap amount percent - <span class="summary_desc"><div class='inline'><p> -the category axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>the category axis.</p> </div></span> </li> @@ -223,10 +219,9 @@ the category axis. - <span class="summary_desc"><div class='inline'><p> -space between bar or column clusters, as a percentage of the bar or column -width. -</p> + <span class="summary_desc"><div class='inline'> +<p>space between bar or column clusters, as a percentage of the bar or column +width.</p> </div></span> </li> @@ -251,9 +246,8 @@ width. - <span class="summary_desc"><div class='inline'><p> -grouping for a column, line, or area chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>grouping for a column, line, or area chart.</p> </div></span> </li> @@ -278,9 +272,8 @@ grouping for a column, line, or area chart. - <span class="summary_desc"><div class='inline'><p> -the category axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>the category axis.</p> </div></span> </li> @@ -305,9 +298,8 @@ the category axis. - <span class="summary_desc"><div class='inline'><p> -the category axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>the category axis.</p> </div></span> </li> @@ -352,9 +344,8 @@ the category axis. - <span class="summary_desc"><div class='inline'><p> -Creates a new line chart object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new line chart object.</p> </div></span> </li> @@ -376,9 +367,8 @@ Creates a new line chart object. - <span class="summary_desc"><div class='inline'><p> -Serializes the bar chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the bar chart.</p> </div></span> </li> @@ -409,9 +399,8 @@ Serializes the bar chart. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new line chart object -</p> + +<p>Creates a new line chart object</p> </div> @@ -430,9 +419,8 @@ Creates a new line chart object — - <div class='inline'><p> -The workbook that owns this chart. -</p> + <div class='inline'> +<p>The workbook that owns this chart.</p> </div> </li> @@ -449,9 +437,8 @@ The workbook that owns this chart. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -628,9 +615,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -the category axis -</p> + +<p>the category axis</p> </div> @@ -685,10 +671,9 @@ the category axis </p><div class="docstring"> <div class="discussion"> - <p> -space between bar or column clusters, as a percentage of the bar or column -width. -</p> + +<p>space between bar or column clusters, as a percentage of the bar or column +width.</p> </div> @@ -743,10 +728,9 @@ width. </p><div class="docstring"> <div class="discussion"> - <p> -grouping for a column, line, or area chart. must be one of -[:percentStacked, :clustered, :standard, :stacked] -</p> + +<p>grouping for a column, line, or area chart. must be one of +[:percentStacked, :clustered, :standard, :stacked]</p> </div> @@ -801,9 +785,8 @@ grouping for a column, line, or area chart. must be one of </p><div class="docstring"> <div class="discussion"> - <p> -the category axis -</p> + +<p>the category axis</p> </div> @@ -858,9 +841,8 @@ the category axis </p><div class="docstring"> <div class="discussion"> - <p> -the category axis -</p> + +<p>the category axis</p> </div> @@ -919,9 +901,8 @@ the category axis </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the bar chart -</p> + +<p>Serializes the bar chart</p> </div> @@ -995,7 +976,7 @@ Serializes the bar chart </div> <div id="footer"> - Generated on Tue Nov 29 13:28:43 2011 by + Generated on Wed Nov 30 08:46:35 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/LineSeries.html b/doc/Axlsx/LineSeries.html index d9bfc986..f45ede72 100644 --- a/doc/Axlsx/LineSeries.html +++ b/doc/Axlsx/LineSeries.html @@ -99,15 +99,13 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage series is to use Chart#add_series -</p> + <div class='inline'> +<p>The recommended way to manage series is to use Chart#add_series</p> </div> </div> -<p> -A LineSeries defines the title, data and labels for line charts -</p> + +<p>A LineSeries defines the title, data and labels for line charts</p> </div> @@ -152,9 +150,8 @@ A LineSeries defines the title, data and labels for line charts - <span class="summary_desc"><div class='inline'><p> -The data for this series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The data for this series.</p> </div></span> </li> @@ -179,9 +176,8 @@ The data for this series. - <span class="summary_desc"><div class='inline'><p> -The labels for this series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The labels for this series.</p> </div></span> </li> @@ -226,9 +222,8 @@ The labels for this series. - <span class="summary_desc"><div class='inline'><p> -Creates a new series. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new series.</p> </div></span> </li> @@ -250,9 +245,8 @@ Creates a new series. - <span class="summary_desc"><div class='inline'><p> -Serializes the series. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the series.</p> </div></span> </li> @@ -283,9 +277,8 @@ Serializes the series. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new series -</p> + +<p>Creates a new series</p> </div> @@ -317,9 +310,8 @@ Creates a new series — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -401,9 +393,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The data for this series. -</p> + +<p>The data for this series.</p> </div> @@ -458,9 +449,8 @@ The data for this series. </p><div class="docstring"> <div class="discussion"> - <p> -The labels for this series. -</p> + +<p>The labels for this series.</p> </div> @@ -519,9 +509,8 @@ The labels for this series. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the series -</p> + +<p>Serializes the series</p> </div> @@ -540,9 +529,8 @@ Serializes the series — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -596,7 +584,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:41 2011 by + Generated on Wed Nov 30 08:46:34 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Marker.html b/doc/Axlsx/Marker.html index 39e34ed6..9ae65689 100644 --- a/doc/Axlsx/Marker.html +++ b/doc/Axlsx/Marker.html @@ -97,17 +97,15 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage markers is Worksheet#add_chart Markers are -created for a two cell anchor based on the :start and :end options. -</p> + <div class='inline'> +<p>The recommended way to manage markers is Worksheet#add_chart Markers are +created for a two cell anchor based on the :start and :end options.</p> </div> </div> -<p> -The Marker class defines a point in the worksheet that drawing anchors -attach to. -</p> + +<p>The Marker class defines a point in the worksheet that drawing anchors +attach to.</p> </div> @@ -146,9 +144,8 @@ attach to. - <span class="summary_desc"><div class='inline'><p> -The column this marker anchors to. -</p> + <span class="summary_desc"><div class='inline'> +<p>The column this marker anchors to.</p> </div></span> </li> @@ -173,9 +170,8 @@ The column this marker anchors to. - <span class="summary_desc"><div class='inline'><p> -The offset distance from this marker’s column. -</p> + <span class="summary_desc"><div class='inline'> +<p>The offset distance from this marker’s column.</p> </div></span> </li> @@ -200,9 +196,8 @@ The offset distance from this marker’s column. - <span class="summary_desc"><div class='inline'><p> -The row this marker anchors to. -</p> + <span class="summary_desc"><div class='inline'> +<p>The row this marker anchors to.</p> </div></span> </li> @@ -227,9 +222,8 @@ The row this marker anchors to. - <span class="summary_desc"><div class='inline'><p> -The offset distance from this marker’s row. -</p> + <span class="summary_desc"><div class='inline'> +<p>The offset distance from this marker’s row.</p> </div></span> </li> @@ -264,9 +258,8 @@ The offset distance from this marker’s row. - <span class="summary_desc"><div class='inline'><p> -shortcut to set the column, row position for this marker. -</p> + <span class="summary_desc"><div class='inline'> +<p>shortcut to set the column, row position for this marker.</p> </div></span> </li> @@ -290,9 +283,8 @@ shortcut to set the column, row position for this marker. - <span class="summary_desc"><div class='inline'><p> -Creates a new Marker object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Marker object.</p> </div></span> </li> @@ -314,9 +306,8 @@ Creates a new Marker object. - <span class="summary_desc"><div class='inline'><p> -Serializes the marker. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the marker.</p> </div></span> </li> @@ -337,9 +328,8 @@ Serializes the marker. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Marker object -</p> + +<p>Creates a new Marker object</p> </div> @@ -360,9 +350,8 @@ Creates a new Marker object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -460,9 +449,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The column this marker anchors to -</p> + +<p>The column this marker anchors to</p> </div> @@ -517,9 +505,8 @@ The column this marker anchors to </p><div class="docstring"> <div class="discussion"> - <p> -The offset distance from this marker’s column -</p> + +<p>The offset distance from this marker’s column</p> </div> @@ -574,9 +561,8 @@ The offset distance from this marker’s column </p><div class="docstring"> <div class="discussion"> - <p> -The row this marker anchors to -</p> + +<p>The row this marker anchors to</p> </div> @@ -631,9 +617,8 @@ The row this marker anchors to </p><div class="docstring"> <div class="discussion"> - <p> -The offset distance from this marker’s row -</p> + +<p>The offset distance from this marker’s row</p> </div> @@ -692,9 +677,8 @@ The offset distance from this marker’s row </p><div class="docstring"> <div class="discussion"> - <p> -shortcut to set the column, row position for this marker -</p> + +<p>shortcut to set the column, row position for this marker</p> </div> @@ -713,9 +697,8 @@ shortcut to set the column, row position for this marker — - <div class='inline'><p> -the column for the marker -</p> + <div class='inline'> +<p>the column for the marker</p> </div> </li> @@ -730,9 +713,8 @@ the column for the marker — - <div class='inline'><p> -the row of the marker -</p> + <div class='inline'> +<p>the row of the marker</p> </div> </li> @@ -773,9 +755,8 @@ the row of the marker </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the marker -</p> + +<p>Serializes the marker</p> </div> @@ -794,9 +775,8 @@ Serializes the marker — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -848,7 +828,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:46 2011 by + Generated on Wed Nov 30 08:46:21 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/NumFmt.html b/doc/Axlsx/NumFmt.html index e32a23fc..968f5c9b 100644 --- a/doc/Axlsx/NumFmt.html +++ b/doc/Axlsx/NumFmt.html @@ -97,16 +97,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is Styles#add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is Styles#add_style</p> </div> </div> -<p> -A NumFmt object defines an identifier and formatting code for data in -cells. -</p> + +<p>A NumFmt object defines an identifier and formatting code for data in +cells.</p> </div> @@ -138,9 +136,8 @@ cells. - <span class="summary_desc"><div class='inline'><p> -The formatting to use for this number format. -</p> + <span class="summary_desc"><div class='inline'> +<p>The formatting to use for this number format.</p> </div></span> </li> @@ -165,9 +162,8 @@ The formatting to use for this number format. - <span class="summary_desc"><div class='inline'><p> -An unsinged integer referencing a standard or custom number format. -</p> + <span class="summary_desc"><div class='inline'> +<p>An unsinged integer referencing a standard or custom number format.</p> </div></span> </li> @@ -204,9 +200,8 @@ An unsinged integer referencing a standard or custom number format. - <span class="summary_desc"><div class='inline'><p> -A new instance of NumFmt. -</p> + <span class="summary_desc"><div class='inline'> +<p>A new instance of NumFmt.</p> </div></span> </li> @@ -228,10 +223,9 @@ A new instance of NumFmt. - <span class="summary_desc"><div class='inline'><p> -Creates a numFmt element applying the instance values of this object as -attributes. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a numFmt element applying the instance values of this object as +attributes.</p> </div></span> </li> @@ -252,9 +246,8 @@ attributes. </p><div class="docstring"> <div class="discussion"> - <p> -A new instance of NumFmt -</p> + +<p>A new instance of NumFmt</p> </div> @@ -309,9 +302,8 @@ A new instance of NumFmt </p><div class="docstring"> <div class="discussion"> - <p> -The formatting to use for this number format. -</p> + +<p>The formatting to use for this number format.</p> </div> @@ -329,9 +321,8 @@ The formatting to use for this number format. — - <div class='inline'><p> -The formatting to use for this number format. -</p> + <div class='inline'> +<p>The formatting to use for this number format.</p> </div> </li> @@ -382,51 +373,49 @@ The formatting to use for this number format. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -These are the known formats I can dig up. The constant NUM_FMT_PERCENT is + <div class='inline'> +<p>These are the known formats I can dig up. The constant NUM_FMT_PERCENT is 9, and uses the default % formatting. Axlsx also defines a few formats for date and time that are commonly used in asia as NUM_FMT_YYYYMMDD and -NUM_FRM_YYYYMMDDHHMMSS. -</p> -<pre class="code"> - <span class='integer val'>1</span> <span class='integer val'>0</span> - <span class='integer val'>2</span> <span class='integer val'>0</span><span class='integer val'>.00</span> - <span class='integer val'>3</span> <span class='comment val'>#,##0</span> - <span class='integer val'>4</span> <span class='comment val'>#,##0.00</span> - <span class='integer val'>5</span> $<span class='comment val'>#,##0_);($#,##0)</span> - <span class='integer val'>6</span> $<span class='comment val'>#,##0_);[Red]($#,##0)</span> - <span class='integer val'>7</span> $<span class='comment val'>#,##0.00_);($#,##0.00)</span> - <span class='integer val'>8</span> $<span class='comment val'>#,##0.00_);[Red]($#,##0.00)</span> - <span class='integer val'>9</span> <span class='integer val'>0</span><span class='mod op'>%</span> - <span class='integer val'>10</span> <span class='integer val'>0</span><span class='integer val'>.00</span><span class='mod op'>%</span> - <span class='integer val'>11</span> <span class='integer val'>0</span><span class='float val'>.00E+00</span> - <span class='integer val'>12</span> <span class='comment val'># ?/?</span> - <span class='integer val'>13</span> <span class='comment val'># ??/??</span> - <span class='integer val'>14</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='yyyy identifier id'>yyyy</span> - <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> - <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> - <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> - <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> - <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> - <span class='integer val'>20</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span> - <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> - <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='yyyy identifier id'>yyyy</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span> - <span class='integer val'>37</span> <span class='comment val'>#,##0_);(#,##0)</span> - <span class='integer val'>38</span> <span class='comment val'>#,##0_);[Red](#,##0)</span> - <span class='integer val'>39</span> <span class='comment val'>#,##0.00_);(#,##0.00)</span> - <span class='integer val'>40</span> <span class='comment val'>#,##0.00_);[Red](#,##0.00)</span> - <span class='integer val'>45</span> <span class='mm identifier id'>mm</span><span class='symbol val'>:ss</span> - <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> - <span class='integer val'>47</span> <span class='mm identifier id'>mm</span><span class='symbol val'>:ss</span><span class='integer val'>.0</span> - <span class='integer val'>48</span> <span class='comment val'>##0.0E+0</span> - <span class='integer val'>49</span> @ +NUM_FRM_YYYYMMDDHHMMSS.</p> + +<pre class="code"><span class='integer val'>1</span> <span class='integer val'>0</span> +<span class='integer val'>2</span> <span class='integer val'>0</span><span class='integer val'>.00</span> +<span class='integer val'>3</span> <span class='comment val'>#,##0</span> +<span class='integer val'>4</span> <span class='comment val'>#,##0.00</span> +<span class='integer val'>5</span> $<span class='comment val'>#,##0_);($#,##0)</span> +<span class='integer val'>6</span> $<span class='comment val'>#,##0_);[Red]($#,##0)</span> +<span class='integer val'>7</span> $<span class='comment val'>#,##0.00_);($#,##0.00)</span> +<span class='integer val'>8</span> $<span class='comment val'>#,##0.00_);[Red]($#,##0.00)</span> +<span class='integer val'>9</span> <span class='integer val'>0</span><span class='mod op'>%</span> +<span class='integer val'>10</span> <span class='integer val'>0</span><span class='integer val'>.00</span><span class='mod op'>%</span> +<span class='integer val'>11</span> <span class='integer val'>0</span><span class='float val'>.00E+00</span> +<span class='integer val'>12</span> <span class='comment val'># ?/?</span> +<span class='integer val'>13</span> <span class='comment val'># ??/??</span> +<span class='integer val'>14</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='yyyy identifier id'>yyyy</span> +<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> +<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> +<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> +<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> +<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> +<span class='integer val'>20</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span> +<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> +<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='yyyy identifier id'>yyyy</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span> +<span class='integer val'>37</span> <span class='comment val'>#,##0_);(#,##0)</span> +<span class='integer val'>38</span> <span class='comment val'>#,##0_);[Red](#,##0)</span> +<span class='integer val'>39</span> <span class='comment val'>#,##0.00_);(#,##0.00)</span> +<span class='integer val'>40</span> <span class='comment val'>#,##0.00_);[Red](#,##0.00)</span> +<span class='integer val'>45</span> <span class='mm identifier id'>mm</span><span class='symbol val'>:ss</span> +<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> +<span class='integer val'>47</span> <span class='mm identifier id'>mm</span><span class='symbol val'>:ss</span><span class='integer val'>.0</span> +<span class='integer val'>48</span> <span class='comment val'>##0.0E+0</span> +<span class='integer val'>49</span> @ </pre> </div> </div> -<p> -An unsinged integer referencing a standard or custom number format. -</p> + +<p>An unsinged integer referencing a standard or custom number format.</p> </div> @@ -444,9 +433,8 @@ An unsinged integer referencing a standard or custom number format. — - <div class='inline'><p> -An unsinged integer referencing a standard or custom number format. -</p> + <div class='inline'> +<p>An unsinged integer referencing a standard or custom number format.</p> </div> </li> @@ -498,10 +486,9 @@ An unsinged integer referencing a standard or custom number format. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a numFmt element applying the instance values of this object as -attributes. -</p> + +<p>Creates a numFmt element applying the instance values of this object as +attributes.</p> </div> @@ -520,9 +507,8 @@ attributes. — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -553,7 +539,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:49 2011 by + Generated on Wed Nov 30 08:46:22 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/OneCellAnchor.html b/doc/Axlsx/OneCellAnchor.html index 68ec5ab9..40e76ca2 100644 --- a/doc/Axlsx/OneCellAnchor.html +++ b/doc/Axlsx/OneCellAnchor.html @@ -97,16 +97,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage drawings, images and charts is -Worksheet#add_chart or Worksheet#add_image. -</p> + <div class='inline'> +<p>The recommended way to manage drawings, images and charts is +Worksheet#add_chart or Worksheet#add_image.</p> </div> </div> -<p> -This class details a single cell anchor for drawings. -</p> + +<p>This class details a single cell anchor for drawings.</p> </div> @@ -147,9 +145,8 @@ This class details a single cell anchor for drawings. - <span class="summary_desc"><div class='inline'><p> -The drawing that holds this anchor. -</p> + <span class="summary_desc"><div class='inline'> +<p>The drawing that holds this anchor.</p> </div></span> </li> @@ -174,9 +171,8 @@ The drawing that holds this anchor. - <span class="summary_desc"><div class='inline'><p> -A marker that defines the from cell anchor. -</p> + <span class="summary_desc"><div class='inline'> +<p>A marker that defines the from cell anchor.</p> </div></span> </li> @@ -201,10 +197,9 @@ A marker that defines the from cell anchor. - <span class="summary_desc"><div class='inline'><p> -the height of the graphic object in pixels this is converted to EMU at a 92 -ppi resolution. -</p> + <span class="summary_desc"><div class='inline'> +<p>the height of the graphic object in pixels this is converted to EMU at a 92 +ppi resolution.</p> </div></span> </li> @@ -229,9 +224,8 @@ ppi resolution. - <span class="summary_desc"><div class='inline'><p> -The object this anchor hosts. -</p> + <span class="summary_desc"><div class='inline'> +<p>The object this anchor hosts.</p> </div></span> </li> @@ -256,9 +250,8 @@ The object this anchor hosts. - <span class="summary_desc"><div class='inline'><p> -the width of the graphic object in pixels. -</p> + <span class="summary_desc"><div class='inline'> +<p>the width of the graphic object in pixels.</p> </div></span> </li> @@ -293,9 +286,8 @@ the width of the graphic object in pixels. - <span class="summary_desc"><div class='inline'><p> -The index of this anchor in the drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of this anchor in the drawing.</p> </div></span> </li> @@ -319,9 +311,8 @@ The index of this anchor in the drawing. - <span class="summary_desc"><div class='inline'><p> -Creates a new OneCellAnchor object and an Pic associated with it. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new OneCellAnchor object and an Pic associated with it.</p> </div></span> </li> @@ -343,9 +334,8 @@ Creates a new OneCellAnchor object and an Pic associated with it. - <span class="summary_desc"><div class='inline'><p> -Serializes the anchor. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the anchor.</p> </div></span> </li> @@ -366,9 +356,8 @@ Serializes the anchor. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new OneCellAnchor object and an Pic associated with it. -</p> + +<p>Creates a new OneCellAnchor object and an Pic associated with it.</p> </div> @@ -400,9 +389,8 @@ Creates a new OneCellAnchor object and an Pic associated with it. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -423,9 +411,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -the col, row to start at -</p> + — <div class='inline'> +<p>the col, row to start at</p> </div> </li> @@ -453,9 +440,8 @@ the col, row to start at <span class="default"> </span> - — <div class='inline'><p> -the file location of the image you will render -</p> + — <div class='inline'> +<p>the file location of the image you will render</p> </div> </li> @@ -465,9 +451,8 @@ the file location of the image you will render <span class="default"> </span> - — <div class='inline'><p> -the name attribute for the rendered image -</p> + — <div class='inline'> +<p>the name attribute for the rendered image</p> </div> </li> @@ -477,9 +462,8 @@ the name attribute for the rendered image <span class="default"> </span> - — <div class='inline'><p> -the description of the image rendered -</p> + — <div class='inline'> +<p>the description of the image rendered</p> </div> </li> @@ -542,9 +526,8 @@ the description of the image rendered </p><div class="docstring"> <div class="discussion"> - <p> -The drawing that holds this anchor -</p> + +<p>The drawing that holds this anchor</p> </div> @@ -599,10 +582,9 @@ The drawing that holds this anchor </p><div class="docstring"> <div class="discussion"> - <p> -A marker that defines the from cell anchor. The default from column and row -are 0 and 0 respectively -</p> + +<p>A marker that defines the from cell anchor. The default from column and row +are 0 and 0 respectively</p> </div> @@ -657,10 +639,9 @@ are 0 and 0 respectively </p><div class="docstring"> <div class="discussion"> - <p> -the height of the graphic object in pixels this is converted to EMU at a 92 -ppi resolution -</p> + +<p>the height of the graphic object in pixels this is converted to EMU at a 92 +ppi resolution</p> </div> @@ -715,9 +696,8 @@ ppi resolution </p><div class="docstring"> <div class="discussion"> - <p> -The object this anchor hosts -</p> + +<p>The object this anchor hosts</p> </div> @@ -772,10 +752,9 @@ The object this anchor hosts </p><div class="docstring"> <div class="discussion"> - <p> -the width of the graphic object in pixels. this is converted to EMU at a 92 -ppi resolution -</p> + +<p>the width of the graphic object in pixels. this is converted to EMU at a 92 +ppi resolution</p> </div> @@ -834,9 +813,8 @@ ppi resolution </p><div class="docstring"> <div class="discussion"> - <p> -The index of this anchor in the drawing -</p> + +<p>The index of this anchor in the drawing</p> </div> @@ -888,9 +866,8 @@ The index of this anchor in the drawing </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the anchor -</p> + +<p>Serializes the anchor</p> </div> @@ -909,9 +886,8 @@ Serializes the anchor — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -973,7 +949,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:48 2011 by + Generated on Wed Nov 30 08:46:22 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Override.html b/doc/Axlsx/Override.html index 8db1c816..68ce281e 100644 --- a/doc/Axlsx/Override.html +++ b/doc/Axlsx/Override.html @@ -94,10 +94,9 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -An override content part. These parts are automatically created by for you -based on the content of your package. -</p> + +<p>An override content part. These parts are automatically created by for you +based on the content of your package.</p> </div> @@ -129,9 +128,8 @@ based on the content of your package. - <span class="summary_desc"><div class='inline'><p> -The type of content. -</p> + <span class="summary_desc"><div class='inline'> +<p>The type of content.</p> </div></span> </li> @@ -156,9 +154,8 @@ The type of content. - <span class="summary_desc"><div class='inline'><p> -The name and location of the part. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name and location of the part.</p> </div></span> </li> @@ -195,9 +192,8 @@ The name and location of the part. - <span class="summary_desc"><div class='inline'><p> -Creates a new Override object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Override object.</p> </div></span> </li> @@ -219,9 +215,8 @@ Creates a new Override object. - <span class="summary_desc"><div class='inline'><p> -Serializes the Override object to xml. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the Override object to xml.</p> </div></span> </li> @@ -242,9 +237,8 @@ Serializes the Override object to xml. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Override object -</p> + +<p>Creates a new Override object</p> </div> @@ -265,9 +259,8 @@ Creates a new Override object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -312,10 +305,9 @@ a customizable set of options — - <div class='inline'><p> -An argument error is raised if both PartName and ContentType are not -specified. -</p> + <div class='inline'> +<p>An argument error is raised if both PartName and ContentType are not +specified.</p> </div> </li> @@ -367,9 +359,8 @@ specified. </p><div class="docstring"> <div class="discussion"> - <p> -The type of content. -</p> + +<p>The type of content.</p> </div> @@ -424,9 +415,8 @@ The type of content. </p><div class="docstring"> <div class="discussion"> - <p> -The name and location of the part. -</p> + +<p>The name and location of the part.</p> </div> @@ -485,9 +475,8 @@ The name and location of the part. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the Override object to xml -</p> + +<p>Serializes the Override object to xml</p> </div> @@ -506,9 +495,8 @@ Serializes the Override object to xml — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -543,7 +531,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:41 2011 by + Generated on Wed Nov 30 08:46:34 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Package.html b/doc/Axlsx/Package.html index 2c003230..29c1b79f 100644 --- a/doc/Axlsx/Package.html +++ b/doc/Axlsx/Package.html @@ -94,11 +94,10 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -Package is responsible for managing all the bits and peices that Open + +<p>Package is responsible for managing all the bits and peices that Open Office XML requires to make a valid xlsx document including valdation and -serialization. -</p> +serialization.</p> </div> @@ -137,9 +136,8 @@ serialization. - <span class="summary_desc"><div class='inline'><p> -Initializes your package. -</p> + <span class="summary_desc"><div class='inline'> +<p>Initializes your package.</p> </div></span> </li> @@ -161,9 +159,8 @@ Initializes your package. - <span class="summary_desc"><div class='inline'><p> -Accepts a ruport table for serialization to xlsx. -</p> + <span class="summary_desc"><div class='inline'> +<p>Accepts a ruport table for serialization to xlsx.</p> </div></span> </li> @@ -185,9 +182,8 @@ Accepts a ruport table for serialization to xlsx. - <span class="summary_desc"><div class='inline'><p> -Serialize your workbook to disk as an xlsx document. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serialize your workbook to disk as an xlsx document.</p> </div></span> </li> @@ -209,9 +205,8 @@ Serialize your workbook to disk as an xlsx document. - <span class="summary_desc"><div class='inline'><p> -Validate all parts of the package against xsd schema. -</p> + <span class="summary_desc"><div class='inline'> +<p>Validate all parts of the package against xsd schema.</p> </div></span> </li> @@ -233,9 +228,8 @@ Validate all parts of the package against xsd schema. - <span class="summary_desc"><div class='inline'><p> -The workbook this package will serialize or validate. -</p> + <span class="summary_desc"><div class='inline'> +<p>The workbook this package will serialize or validate.</p> </div></span> </li> @@ -277,9 +271,8 @@ The workbook this package will serialize or validate. </p><div class="docstring"> <div class="discussion"> - <p> -Initializes your package -</p> + +<p>Initializes your package</p> </div> @@ -289,9 +282,8 @@ Initializes your package <div class="examples"> <h3>Examples:</h3> - <h4><div class='inline'><p> -Package.new :author => ‘you!’, :workbook => Workbook.new -</p> + <h4><div class='inline'> +<p>Package.new :author => ‘you!’, :workbook => Workbook.new</p> </div></h4> <pre class="example code"> </pre> @@ -312,10 +304,9 @@ Package.new :author => ‘you!’, :workbook => Workbook.new — - <div class='inline'><p> -A hash that you can use to specify the author and workbook for this -package. -</p> + <div class='inline'> +<p>A hash that you can use to specify the author and workbook for this +package.</p> </div> </li> @@ -334,9 +325,8 @@ package. <span class="default"> </span> - — <div class='inline'><p> -The author of the document -</p> + — <div class='inline'> +<p>The author of the document</p> </div> </li> @@ -369,9 +359,8 @@ The author of the document — - <div class='inline'><p> -the object that the method was called on -</p> + <div class='inline'> +<p>the object that the method was called on</p> </div> </li> @@ -422,9 +411,8 @@ the object that the method was called on </p><div class="docstring"> <div class="discussion"> - <p> -Accepts a ruport table for serialization to xlsx -</p> + +<p>Accepts a ruport table for serialization to xlsx</p> </div> @@ -443,9 +431,8 @@ Accepts a ruport table for serialization to xlsx — - <div class='inline'><p> -a ruport Table object -</p> + <div class='inline'> +<p>a ruport Table object</p> </div> </li> @@ -487,17 +474,15 @@ a ruport Table object <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -A tremendous amount of effort has gone into ensuring that you cannot create + <div class='inline'> +<p>A tremendous amount of effort has gone into ensuring that you cannot create invalid xlsx documents. confirm_valid should be used in the rare case that -you cannot open the serialized file. -</p> +you cannot open the serialized file.</p> </div> </div> -<p> -Serialize your workbook to disk as an xlsx document. -</p> + +<p>Serialize your workbook to disk as an xlsx document.</p> </div> @@ -530,9 +515,8 @@ Serialize your workbook to disk as an xlsx document. — - <div class='inline'><p> -The file you want to serialize your package to -</p> + <div class='inline'> +<p>The file you want to serialize your package to</p> </div> </li> @@ -549,9 +533,8 @@ The file you want to serialize your package to — - <div class='inline'><p> -Validate the package prior to serialization. -</p> + <div class='inline'> +<p>Validate the package prior to serialization.</p> </div> </li> @@ -569,10 +552,9 @@ Validate the package prior to serialization. — - <div class='inline'><p> -False if confirm_valid and validation errors exist. True if the package was -serialized -</p> + <div class='inline'> +<p>False if confirm_valid and validation errors exist. True if the package was +serialized</p> </div> </li> @@ -650,25 +632,22 @@ serialized <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -This gem includes all schema from OfficeOpenXML-XMLSchema-Transitional.zip + <div class='inline'> +<p>This gem includes all schema from OfficeOpenXML-XMLSchema-Transitional.zip and OpenPackagingConventions-XMLSchema.zip as per ECMA-376, Third edition. opc schema require an internet connection to import remote schema from dublin core for dc, dcterms and xml namespaces. Those remote schema are -included in this gem, and the original files have been altered to refer to -the local versions. -</p> -<p> -If by chance you are able to creat a package that does not validate it +included in this gem, and the original files have been altered to refer to +the local versions.</p> + +<p>If by chance you are able to creat a package that does not validate it indicates that the internal validation is not robust enough and needs to be -improved. Please report your errors to the gem author. -</p> +improved. Please report your errors to the gem author.</p> </div> </div> -<p> -Validate all parts of the package against xsd schema. -</p> + +<p>Validate all parts of the package against xsd schema.</p> </div> @@ -698,9 +677,8 @@ Validate all parts of the package against xsd schema. — - <div class='inline'><p> -An array of all validation errors found. -</p> + <div class='inline'> +<p>An array of all validation errors found.</p> </div> </li> @@ -752,25 +730,23 @@ An array of all validation errors found. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -As there are multiple ways to instantiate a workbook for the package, here -are a few examples: -</p> -<pre class="code"> - <span class='comment val'># assign directly during package instanciation</span> - <span class='wb identifier id'>wb</span> <span class='assign token'>=</span> <span class='Package constant id'>Package</span><span class='dot token'>.</span><span class='new identifier id'>new</span><span class='lparen token'>(</span><span class='symbol val'>:workbook</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='Workbook constant id'>Workbook</span><span class='dot token'>.</span><span class='new identifier id'>new</span><span class='rparen token'>)</span><span class='dot token'>.</span><span class='workbook identifier id'>workbook</span> - - <span class='comment val'># get a fresh workbook automatically from the package</span> - <span class='wb identifier id'>wb</span> <span class='assign token'>=</span> <span class='Pacakge constant id'>Pacakge</span><span class='dot token'>.</span><span class='new identifier id'>new</span><span class='lparen token'>(</span><span class='rparen token'>)</span><span class='dot token'>.</span><span class='workbook identifier id'>workbook</span> - <span class='comment val'># # set the workbook after creating the package</span> - <span class='wb identifier id'>wb</span> <span class='assign token'>=</span> <span class='Package constant id'>Package</span><span class='dot token'>.</span><span class='new identifier id'>new</span><span class='lparen token'>(</span><span class='rparen token'>)</span><span class='dot token'>.</span><span class='workbook identifier id'>workbook</span> <span class='assign token'>=</span> <span class='Workbook constant id'>Workbook</span><span class='dot token'>.</span><span class='new identifier id'>new</span> + <div class='inline'> +<p>As there are multiple ways to instantiate a workbook for the package, here +are a few examples:</p> + +<pre class="ruby"><span class="ruby-comment"># assign directly during package instanciation</span> +<span class="ruby-identifier">wb</span> = <span class="ruby-constant">Package</span>.<span class="ruby-identifier">new</span>(:<span class="ruby-identifier">workbook</span> =<span class="ruby-operator">></span> <span class="ruby-constant">Workbook</span>.<span class="ruby-identifier">new</span>).<span class="ruby-identifier">workbook</span> + +<span class="ruby-comment"># get a fresh workbook automatically from the package</span> +<span class="ruby-identifier">wb</span> = <span class="ruby-constant">Pacakge</span>.<span class="ruby-identifier">new</span>().<span class="ruby-identifier">workbook</span> +<span class="ruby-comment"># # set the workbook after creating the package</span> +<span class="ruby-identifier">wb</span> = <span class="ruby-constant">Package</span>.<span class="ruby-identifier">new</span>().<span class="ruby-identifier">workbook</span> = <span class="ruby-constant">Workbook</span>.<span class="ruby-identifier">new</span> </pre> </div> </div> -<p> -The workbook this package will serialize or validate. -</p> + +<p>The workbook this package will serialize or validate.</p> </div> @@ -801,10 +777,9 @@ The workbook this package will serialize or validate. — - <div class='inline'><p> -If no workbook instance has been assigned with this package a new Workbook -instance is returned. -</p> + <div class='inline'> +<p>If no workbook instance has been assigned with this package a new Workbook +instance is returned.</p> </div> </li> @@ -821,9 +796,8 @@ instance is returned. - <div class='inline'><p> -ArgumentError if workbook parameter is not a Workbook instance. -</p> + <div class='inline'> +<p>ArgumentError if workbook parameter is not a Workbook instance.</p> </div> </li> @@ -902,7 +876,7 @@ ArgumentError if workbook parameter is not a Workbook instance. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:43 2011 by + Generated on Wed Nov 30 08:46:36 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/PatternFill.html b/doc/Axlsx/PatternFill.html index 6370e694..a4a6e647 100644 --- a/doc/Axlsx/PatternFill.html +++ b/doc/Axlsx/PatternFill.html @@ -97,15 +97,13 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with Styles#add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with Styles#add_style</p> </div> </div> -<p> -A PatternFill is the pattern and solid fill styling for a cell. -</p> + +<p>A PatternFill is the pattern and solid fill styling for a cell.</p> </div> @@ -144,9 +142,8 @@ A PatternFill is the pattern and solid fill styling for a cell. - <span class="summary_desc"><div class='inline'><p> -The color to use for the background of the fill when the type is not solid. -</p> + <span class="summary_desc"><div class='inline'> +<p>The color to use for the background of the fill when the type is not solid.</p> </div></span> </li> @@ -171,9 +168,8 @@ The color to use for the background of the fill when the type is not solid. - <span class="summary_desc"><div class='inline'><p> -The color to use for the the background in solid fills. -</p> + <span class="summary_desc"><div class='inline'> +<p>The color to use for the the background in solid fills.</p> </div></span> </li> @@ -198,9 +194,8 @@ The color to use for the the background in solid fills. - <span class="summary_desc"><div class='inline'><p> -The pattern type to use. -</p> + <span class="summary_desc"><div class='inline'> +<p>The pattern type to use.</p> </div></span> </li> @@ -237,9 +232,8 @@ The pattern type to use. - <span class="summary_desc"><div class='inline'><p> -Creates a new PatternFill Object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new PatternFill Object.</p> </div></span> </li> @@ -261,9 +255,8 @@ Creates a new PatternFill Object. - <span class="summary_desc"><div class='inline'><p> -Serializes the pattern fill. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the pattern fill.</p> </div></span> </li> @@ -284,9 +277,8 @@ Serializes the pattern fill. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new PatternFill Object -</p> + +<p>Creates a new PatternFill Object</p> </div> @@ -307,9 +299,8 @@ Creates a new PatternFill Object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -398,9 +389,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The color to use for the background of the fill when the type is not solid. -</p> + +<p>The color to use for the background of the fill when the type is not solid.</p> </div> @@ -455,9 +445,8 @@ The color to use for the background of the fill when the type is not solid. </p><div class="docstring"> <div class="discussion"> - <p> -The color to use for the the background in solid fills. -</p> + +<p>The color to use for the the background in solid fills.</p> </div> @@ -515,36 +504,34 @@ The color to use for the the background in solid fills. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -patternType must be one of -</p> -<pre class="code"> - <span class='symbol val'>:none</span> - <span class='symbol val'>:solid</span> - <span class='symbol val'>:mediumGray</span> - <span class='symbol val'>:darkGray</span> - <span class='symbol val'>:lightGray</span> - <span class='symbol val'>:darkHorizontal</span> - <span class='symbol val'>:darkVertical</span> - <span class='symbol val'>:darkDown</span> - <span class='symbol val'>:darkUp</span> - <span class='symbol val'>:darkGrid</span> - <span class='symbol val'>:darkTrellis</span> - <span class='symbol val'>:lightHorizontal</span> - <span class='symbol val'>:lightVertical</span> - <span class='symbol val'>:lightDown</span> - <span class='symbol val'>:lightUp</span> - <span class='symbol val'>:lightGrid</span> - <span class='symbol val'>:lightTrellis</span> - <span class='symbol val'>:gray125</span> - <span class='symbol val'>:gray0625</span> + <div class='inline'> +<p>patternType must be one of</p> + +<pre class="code"><span class='symbol val'>:none</span> +<span class='symbol val'>:solid</span> +<span class='symbol val'>:mediumGray</span> +<span class='symbol val'>:darkGray</span> +<span class='symbol val'>:lightGray</span> +<span class='symbol val'>:darkHorizontal</span> +<span class='symbol val'>:darkVertical</span> +<span class='symbol val'>:darkDown</span> +<span class='symbol val'>:darkUp</span> +<span class='symbol val'>:darkGrid</span> +<span class='symbol val'>:darkTrellis</span> +<span class='symbol val'>:lightHorizontal</span> +<span class='symbol val'>:lightVertical</span> +<span class='symbol val'>:lightDown</span> +<span class='symbol val'>:lightUp</span> +<span class='symbol val'>:lightGrid</span> +<span class='symbol val'>:lightTrellis</span> +<span class='symbol val'>:gray125</span> +<span class='symbol val'>:gray0625</span> </pre> </div> </div> -<p> -The pattern type to use -</p> + +<p>The pattern type to use</p> </div> @@ -597,9 +584,8 @@ The pattern type to use </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the pattern fill -</p> + +<p>Serializes the pattern fill</p> </div> @@ -618,9 +604,8 @@ Serializes the pattern fill — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -672,7 +657,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:58 2011 by + Generated on Wed Nov 30 08:46:29 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Pic.html b/doc/Axlsx/Pic.html index 505d49c0..cb791160 100644 --- a/doc/Axlsx/Pic.html +++ b/doc/Axlsx/Pic.html @@ -94,10 +94,9 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -a Pic object represents an image in your worksheet Worksheet#add_image is -the recommended way to manage images in your sheets -</p> + +<p>a Pic object represents an image in your worksheet Worksheet#add_image is +the recommended way to manage images in your sheets</p> </div> @@ -120,9 +119,8 @@ the recommended way to manage images in your sheets <dt id="ALLOWED_EXTENSIONS-constant" class="">ALLOWED_EXTENSIONS = <div class="docstring"> <div class="discussion"> - <p> -allowed file extenstions -</p> + +<p>allowed file extenstions</p> </div> @@ -161,9 +159,8 @@ allowed file extenstions - <span class="summary_desc"><div class='inline'><p> -The anchor for this image. -</p> + <span class="summary_desc"><div class='inline'> +<p>The anchor for this image.</p> </div></span> </li> @@ -188,9 +185,8 @@ The anchor for this image. - <span class="summary_desc"><div class='inline'><p> -A description of the picture. -</p> + <span class="summary_desc"><div class='inline'> +<p>A description of the picture.</p> </div></span> </li> @@ -215,10 +211,9 @@ A description of the picture. - <span class="summary_desc"><div class='inline'><p> -The path to the image you want to include Only local images are supported -at this time and only jpg support. -</p> + <span class="summary_desc"><div class='inline'> +<p>The path to the image you want to include Only local images are supported +at this time and only jpg support.</p> </div></span> </li> @@ -243,9 +238,8 @@ at this time and only jpg support. - <span class="summary_desc"><div class='inline'><p> -The name to use for this picture. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name to use for this picture.</p> </div></span> </li> @@ -280,9 +274,8 @@ The name to use for this picture. - <span class="summary_desc"><div class='inline'><p> -returns the extension of image_src without the preceeding ’.’. -</p> + <span class="summary_desc"><div class='inline'> +<p>returns the extension of image_src without the preceeding ‘.’.</p> </div></span> </li> @@ -304,9 +297,8 @@ returns the extension of image_src without the preceeding ’.’. - <span class="summary_desc"><div class='inline'><p> -The file name of image_src without any path information. -</p> + <span class="summary_desc"><div class='inline'> +<p>The file name of image_src without any path information.</p> </div></span> </li> @@ -328,9 +320,8 @@ The file name of image_src without any path information. - <span class="summary_desc"><div class='inline'><p> -providing access to update the anchor’s height attribute. -</p> + <span class="summary_desc"><div class='inline'> +<p>providing access to update the anchor’s height attribute.</p> </div></span> </li> @@ -373,9 +364,8 @@ providing access to update the anchor’s height attribute. - <span class="summary_desc"><div class='inline'><p> -The index of this image in the workbooks images collections. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of this image in the workbooks images collections.</p> </div></span> </li> @@ -399,9 +389,8 @@ The index of this image in the workbooks images collections. - <span class="summary_desc"><div class='inline'><p> -Creates a new Pic(ture) object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Pic(ture) object.</p> </div></span> </li> @@ -423,10 +412,9 @@ Creates a new Pic(ture) object. - <span class="summary_desc"><div class='inline'><p> -The part name for this image used in serialization and relationship -building. -</p> + <span class="summary_desc"><div class='inline'> +<p>The part name for this image used in serialization and relationship +building.</p> </div></span> </li> @@ -448,11 +436,10 @@ building. - <span class="summary_desc"><div class='inline'><p> -This is a short cut method to set the start anchor position If you need + <span class="summary_desc"><div class='inline'> +<p>This is a short cut method to set the start anchor position If you need finer granularity in positioning use graphic_frame.anchor.from.colOff / -rowOff. -</p> +rowOff.</p> </div></span> </li> @@ -474,9 +461,8 @@ rowOff. - <span class="summary_desc"><div class='inline'><p> -Serializes the picture. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the picture.</p> </div></span> </li> @@ -498,9 +484,8 @@ Serializes the picture. - <span class="summary_desc"><div class='inline'><p> -providing access to the anchor’s width attribute. -</p> + <span class="summary_desc"><div class='inline'> +<p>providing access to the anchor’s width attribute.</p> </div></span> </li> @@ -542,9 +527,8 @@ providing access to the anchor’s width attribute. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Pic(ture) object -</p> + +<p>Creates a new Pic(ture) object</p> </div> @@ -563,9 +547,8 @@ Creates a new Pic(ture) object — - <div class='inline'><p> -the anchor that holds this image -</p> + <div class='inline'> +<p>the anchor that holds this image</p> </div> </li> @@ -582,9 +565,8 @@ the anchor that holds this image — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -682,9 +664,8 @@ a customizable set of options — - <div class='inline'><p> -the object that the method was called on -</p> + <div class='inline'> +<p>the object that the method was called on</p> </div> </li> @@ -742,9 +723,8 @@ the object that the method was called on </p><div class="docstring"> <div class="discussion"> - <p> -The anchor for this image -</p> + +<p>The anchor for this image</p> </div> @@ -799,9 +779,8 @@ The anchor for this image </p><div class="docstring"> <div class="discussion"> - <p> -A description of the picture -</p> + +<p>A description of the picture</p> </div> @@ -856,10 +835,9 @@ A description of the picture </p><div class="docstring"> <div class="discussion"> - <p> -The path to the image you want to include Only local images are supported -at this time and only jpg support -</p> + +<p>The path to the image you want to include Only local images are supported +at this time and only jpg support</p> </div> @@ -914,9 +892,8 @@ at this time and only jpg support </p><div class="docstring"> <div class="discussion"> - <p> -The name to use for this picture -</p> + +<p>The name to use for this picture</p> </div> @@ -975,9 +952,8 @@ The name to use for this picture </p><div class="docstring"> <div class="discussion"> - <p> -returns the extension of image_src without the preceeding ’.’ -</p> + +<p>returns the extension of image_src without the preceeding ‘.’</p> </div> @@ -1029,9 +1005,8 @@ returns the extension of image_src without the preceeding ’.’ </p><div class="docstring"> <div class="discussion"> - <p> -The file name of image_src without any path information -</p> + +<p>The file name of image_src without any path information</p> </div> @@ -1083,9 +1058,8 @@ The file name of image_src without any path information </p><div class="docstring"> <div class="discussion"> - <p> -providing access to update the anchor’s height attribute -</p> + +<p>providing access to update the anchor’s height attribute</p> </div> @@ -1191,9 +1165,8 @@ providing access to update the anchor’s height attribute </p><div class="docstring"> <div class="discussion"> - <p> -The index of this image in the workbooks images collections -</p> + +<p>The index of this image in the workbooks images collections</p> </div> @@ -1245,10 +1218,9 @@ The index of this image in the workbooks images collections </p><div class="docstring"> <div class="discussion"> - <p> -The part name for this image used in serialization and relationship -building -</p> + +<p>The part name for this image used in serialization and relationship +building</p> </div> @@ -1300,11 +1272,10 @@ building </p><div class="docstring"> <div class="discussion"> - <p> -This is a short cut method to set the start anchor position If you need + +<p>This is a short cut method to set the start anchor position If you need finer granularity in positioning use graphic_frame.anchor.from.colOff / -rowOff -</p> +rowOff</p> </div> @@ -1323,9 +1294,8 @@ rowOff — - <div class='inline'><p> -The column -</p> + <div class='inline'> +<p>The column</p> </div> </li> @@ -1340,9 +1310,8 @@ The column — - <div class='inline'><p> -The row -</p> + <div class='inline'> +<p>The row</p> </div> </li> @@ -1396,9 +1365,8 @@ The row </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the picture -</p> + +<p>Serializes the picture</p> </div> @@ -1417,9 +1385,8 @@ Serializes the picture — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -1515,9 +1482,8 @@ The document builder instance this objects xml will be added to. </p><div class="docstring"> <div class="discussion"> - <p> -providing access to the anchor’s width attribute -</p> + +<p>providing access to the anchor’s width attribute</p> </div> @@ -1619,7 +1585,7 @@ providing access to the anchor’s width attribute </div> <div id="footer"> - Generated on Tue Nov 29 13:28:54 2011 by + Generated on Wed Nov 30 08:46:33 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Pie3DChart.html b/doc/Axlsx/Pie3DChart.html index 710eeed1..21cd7df4 100644 --- a/doc/Axlsx/Pie3DChart.html +++ b/doc/Axlsx/Pie3DChart.html @@ -96,10 +96,9 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The Pie3DChart is a three dimentional piechart (who would have guessed?) -that you can add to your worksheet. -</p> + +<p>The Pie3DChart is a three dimentional piechart (who would have guessed?) +that you can add to your worksheet.</p> </div> @@ -161,9 +160,8 @@ that you can add to your worksheet. - <span class="summary_desc"><div class='inline'><p> -Creates a new pie chart object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new pie chart object.</p> </div></span> </li> @@ -185,9 +183,8 @@ Creates a new pie chart object. - <span class="summary_desc"><div class='inline'><p> -Serializes the pie chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the pie chart.</p> </div></span> </li> @@ -218,9 +215,8 @@ Serializes the pie chart. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new pie chart object -</p> + +<p>Creates a new pie chart object</p> </div> @@ -239,9 +235,8 @@ Creates a new pie chart object — - <div class='inline'><p> -The workbook that owns this chart. -</p> + <div class='inline'> +<p>The workbook that owns this chart.</p> </div> </li> @@ -258,9 +253,8 @@ The workbook that owns this chart. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -420,9 +414,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the pie chart -</p> + +<p>Serializes the pie chart</p> </div> @@ -480,7 +473,7 @@ Serializes the pie chart </div> <div id="footer"> - Generated on Tue Nov 29 13:28:57 2011 by + Generated on Wed Nov 30 08:46:28 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/PieSeries.html b/doc/Axlsx/PieSeries.html index 5102caee..49c37a7c 100644 --- a/doc/Axlsx/PieSeries.html +++ b/doc/Axlsx/PieSeries.html @@ -99,16 +99,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage series is to use Chart#add_series -</p> + <div class='inline'> +<p>The recommended way to manage series is to use Chart#add_series</p> </div> </div> -<p> -A PieSeries defines the data and labels and explosion for pie charts -series. -</p> + +<p>A PieSeries defines the data and labels and explosion for pie charts +series.</p> </div> @@ -153,9 +151,8 @@ series. - <span class="summary_desc"><div class='inline'><p> -The data for this series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The data for this series.</p> </div></span> </li> @@ -180,9 +177,8 @@ The data for this series. - <span class="summary_desc"><div class='inline'><p> -The explosion for this series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The explosion for this series.</p> </div></span> </li> @@ -207,9 +203,8 @@ The explosion for this series. - <span class="summary_desc"><div class='inline'><p> -The labels for this series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The labels for this series.</p> </div></span> </li> @@ -254,9 +249,8 @@ The labels for this series. - <span class="summary_desc"><div class='inline'><p> -Creates a new series. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new series.</p> </div></span> </li> @@ -278,9 +272,8 @@ Creates a new series. - <span class="summary_desc"><div class='inline'><p> -Serializes the series. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the series.</p> </div></span> </li> @@ -311,9 +304,8 @@ Serializes the series. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new series -</p> + +<p>Creates a new series</p> </div> @@ -345,9 +337,8 @@ Creates a new series — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -447,9 +438,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The data for this series. -</p> + +<p>The data for this series.</p> </div> @@ -504,9 +494,8 @@ The data for this series. </p><div class="docstring"> <div class="discussion"> - <p> -The explosion for this series -</p> + +<p>The explosion for this series</p> </div> @@ -561,9 +550,8 @@ The explosion for this series </p><div class="docstring"> <div class="discussion"> - <p> -The labels for this series. -</p> + +<p>The labels for this series.</p> </div> @@ -622,9 +610,8 @@ The labels for this series. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the series -</p> + +<p>Serializes the series</p> </div> @@ -643,9 +630,8 @@ Serializes the series — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -701,7 +687,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:29:01 2011 by + Generated on Wed Nov 30 08:46:33 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/RegexValidator.html b/doc/Axlsx/RegexValidator.html index b4d48742..0e7baede 100644 --- a/doc/Axlsx/RegexValidator.html +++ b/doc/Axlsx/RegexValidator.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -Validates the value against the regular expression provided. -</p> + +<p>Validates the value against the regular expression provided.</p> </div> @@ -174,10 +173,9 @@ Validates the value against the regular expression provided. — - <div class='inline'><p> -The name of what is being validated. This is included in the output when -the value is invalid -</p> + <div class='inline'> +<p>The name of what is being validated. This is included in the output when +the value is invalid</p> </div> </li> @@ -192,9 +190,8 @@ the value is invalid — - <div class='inline'><p> -The regular expression to evaluate -</p> + <div class='inline'> +<p>The regular expression to evaluate</p> </div> </li> @@ -209,9 +206,8 @@ The regular expression to evaluate — - <div class='inline'><p> -The value to validate. -</p> + <div class='inline'> +<p>The value to validate.</p> </div> </li> @@ -259,7 +255,7 @@ The value to validate. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:57 2011 by + Generated on Wed Nov 30 08:46:28 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Relationship.html b/doc/Axlsx/Relationship.html index e2c5cd91..e0f7b487 100644 --- a/doc/Axlsx/Relationship.html +++ b/doc/Axlsx/Relationship.html @@ -97,15 +97,13 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Packages automatcially manage relationships. -</p> + <div class='inline'> +<p>Packages automatcially manage relationships.</p> </div> </div> -<p> -A relationship defines a reference between package parts. -</p> + +<p>A relationship defines a reference between package parts.</p> </div> @@ -137,9 +135,8 @@ A relationship defines a reference between package parts. - <span class="summary_desc"><div class='inline'><p> -The location of the relationship target. -</p> + <span class="summary_desc"><div class='inline'> +<p>The location of the relationship target.</p> </div></span> </li> @@ -164,9 +161,8 @@ The location of the relationship target. - <span class="summary_desc"><div class='inline'><p> -The type of relationship. -</p> + <span class="summary_desc"><div class='inline'> +<p>The type of relationship.</p> </div></span> </li> @@ -203,9 +199,8 @@ The type of relationship. - <span class="summary_desc"><div class='inline'><p> -A new instance of Relationship. -</p> + <span class="summary_desc"><div class='inline'> +<p>A new instance of Relationship.</p> </div></span> </li> @@ -227,9 +222,8 @@ A new instance of Relationship. - <span class="summary_desc"><div class='inline'><p> -Serializes the relationship. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the relationship.</p> </div></span> </li> @@ -250,9 +244,8 @@ Serializes the relationship. </p><div class="docstring"> <div class="discussion"> - <p> -A new instance of Relationship -</p> + +<p>A new instance of Relationship</p> </div> @@ -301,9 +294,8 @@ A new instance of Relationship </p><div class="docstring"> <div class="discussion"> - <p> -The location of the relationship target -</p> + +<p>The location of the relationship target</p> </div> @@ -361,15 +353,13 @@ The location of the relationship target <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Supported types are defined as constants in Axlsx: -</p> + <div class='inline'> +<p>Supported types are defined as constants in Axlsx:</p> </div> </div> -<p> -The type of relationship -</p> + +<p>The type of relationship</p> </div> @@ -453,9 +443,8 @@ The type of relationship </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the relationship -</p> + +<p>Serializes the relationship</p> </div> @@ -474,9 +463,8 @@ Serializes the relationship — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -491,9 +479,8 @@ The document builder instance this objects xml will be added to. — - <div class='inline'><p> -the reference id of the object. -</p> + <div class='inline'> +<p>the reference id of the object.</p> </div> </li> @@ -545,7 +532,7 @@ the reference id of the object. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:47 2011 by + Generated on Wed Nov 30 08:46:21 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Relationships.html b/doc/Axlsx/Relationships.html index d930a3de..fd687a8b 100644 --- a/doc/Axlsx/Relationships.html +++ b/doc/Axlsx/Relationships.html @@ -99,16 +99,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The package automatically manages releationships. -</p> + <div class='inline'> +<p>The package automatically manages releationships.</p> </div> </div> -<p> -Relationships are a collection of Relations that define how package parts -are related. -</p> + +<p>Relationships are a collection of Relations that define how package parts +are related.</p> </div> @@ -159,9 +157,8 @@ are related. - <span class="summary_desc"><div class='inline'><p> -Creates a new Relationships collection based on SimpleTypedList. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Relationships collection based on SimpleTypedList.</p> </div></span> </li> @@ -183,9 +180,8 @@ Creates a new Relationships collection based on SimpleTypedList. - <span class="summary_desc"><div class='inline'><p> -Serializes the relationships document. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the relationships document.</p> </div></span> </li> @@ -211,9 +207,8 @@ Serializes the relationships document. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Relationships collection based on SimpleTypedList -</p> + +<p>Creates a new Relationships collection based on SimpleTypedList</p> </div> @@ -269,9 +264,8 @@ Creates a new Relationships collection based on SimpleTypedList </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the relationships document. -</p> + +<p>Serializes the relationships document.</p> </div> @@ -329,7 +323,7 @@ Serializes the relationships document. </div> <div id="footer"> - Generated on Tue Nov 29 13:29:01 2011 by + Generated on Wed Nov 30 08:46:33 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/RestrictionValidator.html b/doc/Axlsx/RestrictionValidator.html index e0eb7e45..a5a2bb53 100644 --- a/doc/Axlsx/RestrictionValidator.html +++ b/doc/Axlsx/RestrictionValidator.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -Validate a value against a specific list of allowed values. -</p> + +<p>Validate a value against a specific list of allowed values.</p> </div> @@ -133,9 +132,8 @@ Validate a value against a specific list of allowed values. - <span class="summary_desc"><div class='inline'><p> -Perform validation. -</p> + <span class="summary_desc"><div class='inline'> +<p>Perform validation.</p> </div></span> </li> @@ -159,9 +157,8 @@ Perform validation. </p><div class="docstring"> <div class="discussion"> - <p> -Perform validation -</p> + +<p>Perform validation</p> </div> @@ -180,9 +177,8 @@ Perform validation — - <div class='inline'><p> -The name of what is being validatied. This is included in the error message -</p> + <div class='inline'> +<p>The name of what is being validatied. This is included in the error message</p> </div> </li> @@ -197,9 +193,8 @@ The name of what is being validatied. This is included in the error message — - <div class='inline'><p> -The list of choices to validate against -</p> + <div class='inline'> +<p>The list of choices to validate against</p> </div> </li> @@ -214,9 +209,8 @@ The list of choices to validate against — - <div class='inline'><p> -The value to be validated -</p> + <div class='inline'> +<p>The value to be validated</p> </div> </li> @@ -234,9 +228,8 @@ The value to be validated — - <div class='inline'><p> -true if validation succeeds. -</p> + <div class='inline'> +<p>true if validation succeeds.</p> </div> </li> @@ -253,9 +246,8 @@ true if validation succeeds. — - <div class='inline'><p> -Raised if the value provided is not in the list of choices. -</p> + <div class='inline'> +<p>Raised if the value provided is not in the list of choices.</p> </div> </li> @@ -291,7 +283,7 @@ Raised if the value provided is not in the list of choices. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:59 2011 by + Generated on Wed Nov 30 08:46:30 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Row.html b/doc/Axlsx/Row.html index 06467bd5..8a8639bf 100644 --- a/doc/Axlsx/Row.html +++ b/doc/Axlsx/Row.html @@ -97,15 +97,13 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage rows and cells is to use Worksheet#add_row -</p> + <div class='inline'> +<p>The recommended way to manage rows and cells is to use Worksheet#add_row</p> </div> </div> -<p> -A Row is a single row in a worksheet. -</p> + +<p>A Row is a single row in a worksheet.</p> </div> @@ -144,9 +142,8 @@ A Row is a single row in a worksheet. - <span class="summary_desc"><div class='inline'><p> -The cells this row holds. -</p> + <span class="summary_desc"><div class='inline'> +<p>The cells this row holds.</p> </div></span> </li> @@ -171,9 +168,8 @@ The cells this row holds. - <span class="summary_desc"><div class='inline'><p> -The worksheet this row belongs to. -</p> + <span class="summary_desc"><div class='inline'> +<p>The worksheet this row belongs to.</p> </div></span> </li> @@ -208,10 +204,9 @@ The worksheet this row belongs to. - <span class="summary_desc"><div class='inline'><p> -Adds a singel sell to the row based on the data provided and updates the -worksheet’s autofit data. -</p> + <span class="summary_desc"><div class='inline'> +<p>Adds a singel sell to the row based on the data provided and updates the +worksheet’s autofit data.</p> </div></span> </li> @@ -233,9 +228,8 @@ worksheet’s autofit data. - <span class="summary_desc"><div class='inline'><p> -The index of this row in the worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of this row in the worksheet.</p> </div></span> </li> @@ -259,9 +253,8 @@ The index of this row in the worksheet. - <span class="summary_desc"><div class='inline'><p> -Creates a new row. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new row.</p> </div></span> </li> @@ -283,9 +276,8 @@ Creates a new row. - <span class="summary_desc"><div class='inline'><p> -sets the style for every cell in this row. -</p> + <span class="summary_desc"><div class='inline'> +<p>sets the style for every cell in this row.</p> </div></span> </li> @@ -307,10 +299,9 @@ sets the style for every cell in this row. - <span class="summary_desc"><div class='inline'><p> -returns the cells in this row as an array This lets us transpose the rows -into columns. -</p> + <span class="summary_desc"><div class='inline'> +<p>returns the cells in this row as an array This lets us transpose the rows +into columns.</p> </div></span> </li> @@ -332,9 +323,8 @@ into columns. - <span class="summary_desc"><div class='inline'><p> -Serializes the row. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the row.</p> </div></span> </li> @@ -355,18 +345,17 @@ Serializes the row. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new row. New Cell objects are created based on the values, types + +<p>Creates a new row. New Cell objects are created based on the values, types and style options. A new cell is created for each item in the values array. -style and types options are applied as follows: -</p> -<pre class="code"> - <span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='types identifier id'>types</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='defined identifier id'>defined</span> <span class='and and kw'>and</span> <span class='is identifier id'>is</span> <span class='a identifier id'>a</span> <span class='symbol identifier id'>symbol</span> <span class='it identifier id'>it</span> <span class='is identifier id'>is</span> <span class='applied identifier id'>applied</span> <span class='to identifier id'>to</span> <span class='all identifier id'>all</span> <span class='the identifier id'>the</span> <span class='cells identifier id'>cells</span> <span class='created identifier id'>created</span><span class='dot token'>.</span> - <span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='types identifier id'>types</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='an identifier id'>an</span> <span class='array identifier id'>array</span><span class='comma token'>,</span> <span class='cell identifier id'>cell</span> <span class='types identifier id'>types</span> <span class='are identifier id'>are</span> <span class='applied identifier id'>applied</span> <span class='by identifier id'>by</span> <span class='index identifier id'>index</span> <span class='for for kw'>for</span> <span class='each identifier id'>each</span> <span class='cell identifier id'>cell</span> - <span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='types identifier id'>types</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='not not kw'>not</span> <span class='set identifier id'>set</span><span class='comma token'>,</span> <span class='the identifier id'>the</span> <span class='cell identifier id'>cell</span> <span class='will identifier id'>will</span> <span class='automatically identifier id'>automatically</span> <span class='determine identifier id'>determine</span> <span class='its identifier id'>its</span> <span class='type identifier id'>type</span><span class='dot token'>.</span> - <span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='style identifier id'>style</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='defined identifier id'>defined</span> <span class='and and kw'>and</span> <span class='is identifier id'>is</span> <span class='an identifier id'>an</span> <span class='Integer constant id'>Integer</span><span class='comma token'>,</span> <span class='it identifier id'>it</span> <span class='is identifier id'>is</span> <span class='applied identifier id'>applied</span> <span class='to identifier id'>to</span> <span class='all identifier id'>all</span> <span class='cells identifier id'>cells</span> <span class='created identifier id'>created</span><span class='dot token'>.</span> - <span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='style identifier id'>style</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='an identifier id'>an</span> <span class='array identifier id'>array</span><span class='comma token'>,</span> <span class='style identifier id'>style</span> <span class='is identifier id'>is</span> <span class='applied identifier id'>applied</span> <span class='by identifier id'>by</span> <span class='index identifier id'>index</span> <span class='for for kw'>for</span> <span class='each identifier id'>each</span> <span class='cell identifier id'>cell</span><span class='dot token'>.</span> - <span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='style identifier id'>style</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='not not kw'>not</span> <span class='defined identifier id'>defined</span><span class='comma token'>,</span> <span class='the identifier id'>the</span> <span class='default identifier id'>default</span> <span class='style identifier id'>style</span> <span class='lparen token'>(</span><span class='integer val'>0</span><span class='rparen token'>)</span> <span class='is identifier id'>is</span> <span class='applied identifier id'>applied</span> <span class='to identifier id'>to</span> <span class='each identifier id'>each</span> <span class='cell identifier id'>cell</span><span class='dot token'>.</span> +style and types options are applied as follows:</p> + +<pre class="code"><span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='types identifier id'>types</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='defined identifier id'>defined</span> <span class='and and kw'>and</span> <span class='is identifier id'>is</span> <span class='a identifier id'>a</span> <span class='symbol identifier id'>symbol</span> <span class='it identifier id'>it</span> <span class='is identifier id'>is</span> <span class='applied identifier id'>applied</span> <span class='to identifier id'>to</span> <span class='all identifier id'>all</span> <span class='the identifier id'>the</span> <span class='cells identifier id'>cells</span> <span class='created identifier id'>created</span><span class='dot token'>.</span> +<span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='types identifier id'>types</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='an identifier id'>an</span> <span class='array identifier id'>array</span><span class='comma token'>,</span> <span class='cell identifier id'>cell</span> <span class='types identifier id'>types</span> <span class='are identifier id'>are</span> <span class='applied identifier id'>applied</span> <span class='by identifier id'>by</span> <span class='index identifier id'>index</span> <span class='for for kw'>for</span> <span class='each identifier id'>each</span> <span class='cell identifier id'>cell</span> +<span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='types identifier id'>types</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='not not kw'>not</span> <span class='set identifier id'>set</span><span class='comma token'>,</span> <span class='the identifier id'>the</span> <span class='cell identifier id'>cell</span> <span class='will identifier id'>will</span> <span class='automatically identifier id'>automatically</span> <span class='determine identifier id'>determine</span> <span class='its identifier id'>its</span> <span class='type identifier id'>type</span><span class='dot token'>.</span> +<span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='style identifier id'>style</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='defined identifier id'>defined</span> <span class='and and kw'>and</span> <span class='is identifier id'>is</span> <span class='an identifier id'>an</span> <span class='Integer constant id'>Integer</span><span class='comma token'>,</span> <span class='it identifier id'>it</span> <span class='is identifier id'>is</span> <span class='applied identifier id'>applied</span> <span class='to identifier id'>to</span> <span class='all identifier id'>all</span> <span class='cells identifier id'>cells</span> <span class='created identifier id'>created</span><span class='dot token'>.</span> +<span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='style identifier id'>style</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='an identifier id'>an</span> <span class='array identifier id'>array</span><span class='comma token'>,</span> <span class='style identifier id'>style</span> <span class='is identifier id'>is</span> <span class='applied identifier id'>applied</span> <span class='by identifier id'>by</span> <span class='index identifier id'>index</span> <span class='for for kw'>for</span> <span class='each identifier id'>each</span> <span class='cell identifier id'>cell</span><span class='dot token'>.</span> +<span class='If constant id'>If</span> <span class='the identifier id'>the</span> <span class='style identifier id'>style</span> <span class='option identifier id'>option</span> <span class='is identifier id'>is</span> <span class='not not kw'>not</span> <span class='defined identifier id'>defined</span><span class='comma token'>,</span> <span class='the identifier id'>the</span> <span class='default identifier id'>default</span> <span class='style identifier id'>style</span> <span class='lparen token'>(</span><span class='integer val'>0</span><span class='rparen token'>)</span> <span class='is identifier id'>is</span> <span class='applied identifier id'>applied</span> <span class='to identifier id'>to</span> <span class='each identifier id'>each</span> <span class='cell identifier id'>cell</span><span class='dot token'>.</span> </pre> @@ -399,9 +388,8 @@ style and types options are applied as follows: — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -503,9 +491,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The cells this row holds -</p> + +<p>The cells this row holds</p> </div> @@ -560,9 +547,8 @@ The cells this row holds </p><div class="docstring"> <div class="discussion"> - <p> -The worksheet this row belongs to -</p> + +<p>The worksheet this row belongs to</p> </div> @@ -621,10 +607,9 @@ The worksheet this row belongs to </p><div class="docstring"> <div class="discussion"> - <p> -Adds a singel sell to the row based on the data provided and updates the -worksheet’s autofit data. -</p> + +<p>Adds a singel sell to the row based on the data provided and updates the +worksheet’s autofit data.</p> </div> @@ -680,9 +665,8 @@ worksheet’s autofit data. </p><div class="docstring"> <div class="discussion"> - <p> -The index of this row in the worksheet -</p> + +<p>The index of this row in the worksheet</p> </div> @@ -734,9 +718,8 @@ The index of this row in the worksheet </p><div class="docstring"> <div class="discussion"> - <p> -sets the style for every cell in this row -</p> + +<p>sets the style for every cell in this row</p> </div> @@ -781,10 +764,9 @@ sets the style for every cell in this row </p><div class="docstring"> <div class="discussion"> - <p> -returns the cells in this row as an array This lets us transpose the rows -into columns -</p> + +<p>returns the cells in this row as an array This lets us transpose the rows +into columns</p> </div> @@ -836,9 +818,8 @@ into columns </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the row -</p> + +<p>Serializes the row</p> </div> @@ -857,9 +838,8 @@ Serializes the row — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -907,7 +887,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:44 2011 by + Generated on Wed Nov 30 08:46:36 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Scaling.html b/doc/Axlsx/Scaling.html index 0d239bdf..333a8ba2 100644 --- a/doc/Axlsx/Scaling.html +++ b/doc/Axlsx/Scaling.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The Scaling class defines axis scaling -</p> + +<p>The Scaling class defines axis scaling</p> </div> @@ -128,9 +127,8 @@ The Scaling class defines axis scaling - <span class="summary_desc"><div class='inline'><p> -logarithmic base for a logarithmic axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>logarithmic base for a logarithmic axis.</p> </div></span> </li> @@ -155,9 +153,8 @@ logarithmic base for a logarithmic axis. - <span class="summary_desc"><div class='inline'><p> -the maximum scaling. -</p> + <span class="summary_desc"><div class='inline'> +<p>the maximum scaling.</p> </div></span> </li> @@ -182,9 +179,8 @@ the maximum scaling. - <span class="summary_desc"><div class='inline'><p> -the minimu scaling. -</p> + <span class="summary_desc"><div class='inline'> +<p>the minimu scaling.</p> </div></span> </li> @@ -209,9 +205,8 @@ the minimu scaling. - <span class="summary_desc"><div class='inline'><p> -the orientation of the axis must be one of [:minMax, :maxMin]. -</p> + <span class="summary_desc"><div class='inline'> +<p>the orientation of the axis must be one of [:minMax, :maxMin].</p> </div></span> </li> @@ -248,9 +243,8 @@ the orientation of the axis must be one of [:minMax, :maxMin]. - <span class="summary_desc"><div class='inline'><p> -creates a new Scaling object. -</p> + <span class="summary_desc"><div class='inline'> +<p>creates a new Scaling object.</p> </div></span> </li> @@ -272,9 +266,8 @@ creates a new Scaling object. - <span class="summary_desc"><div class='inline'><p> -Serializes the axId. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the axId.</p> </div></span> </li> @@ -295,9 +288,8 @@ Serializes the axId. </p><div class="docstring"> <div class="discussion"> - <p> -creates a new Scaling object -</p> + +<p>creates a new Scaling object</p> </div> @@ -318,9 +310,8 @@ creates a new Scaling object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -420,9 +411,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -logarithmic base for a logarithmic axis. must be between 2 and 1000 -</p> + +<p>logarithmic base for a logarithmic axis. must be between 2 and 1000</p> </div> @@ -477,9 +467,8 @@ logarithmic base for a logarithmic axis. must be between 2 and 1000 </p><div class="docstring"> <div class="discussion"> - <p> -the maximum scaling -</p> + +<p>the maximum scaling</p> </div> @@ -534,9 +523,8 @@ the maximum scaling </p><div class="docstring"> <div class="discussion"> - <p> -the minimu scaling -</p> + +<p>the minimu scaling</p> </div> @@ -591,9 +579,8 @@ the minimu scaling </p><div class="docstring"> <div class="discussion"> - <p> -the orientation of the axis must be one of [:minMax, :maxMin] -</p> + +<p>the orientation of the axis must be one of [:minMax, :maxMin]</p> </div> @@ -652,9 +639,8 @@ the orientation of the axis must be one of [:minMax, :maxMin] </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the axId -</p> + +<p>Serializes the axId</p> </div> @@ -673,9 +659,8 @@ Serializes the axId — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -733,7 +718,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:57 2011 by + Generated on Wed Nov 30 08:46:28 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/SerAxis.html b/doc/Axlsx/SerAxis.html index f0930dea..34b87079 100644 --- a/doc/Axlsx/SerAxis.html +++ b/doc/Axlsx/SerAxis.html @@ -96,9 +96,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -A SerAxis object defines a series axis -</p> + +<p>A SerAxis object defines a series axis</p> </div> @@ -134,9 +133,8 @@ A SerAxis object defines a series axis - <span class="summary_desc"><div class='inline'><p> -The number of tick lables to skip between labels. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of tick lables to skip between labels.</p> </div></span> </li> @@ -161,9 +159,8 @@ The number of tick lables to skip between labels. - <span class="summary_desc"><div class='inline'><p> -The number of tickmarks to be skipped before the next one is rendered. -</p> + <span class="summary_desc"><div class='inline'> +<p>The number of tickmarks to be skipped before the next one is rendered.</p> </div></span> </li> @@ -208,9 +205,8 @@ The number of tickmarks to be skipped before the next one is rendered. - <span class="summary_desc"><div class='inline'><p> -Creates a new SerAxis object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new SerAxis object.</p> </div></span> </li> @@ -232,9 +228,8 @@ Creates a new SerAxis object. - <span class="summary_desc"><div class='inline'><p> -Serializes the series axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the series axis.</p> </div></span> </li> @@ -260,9 +255,8 @@ Serializes the series axis. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new SerAxis object -</p> + +<p>Creates a new SerAxis object</p> </div> @@ -281,9 +275,8 @@ Creates a new SerAxis object — - <div class='inline'><p> -the id of this axis. Inherited -</p> + <div class='inline'> +<p>the id of this axis. Inherited</p> </div> </li> @@ -298,9 +291,8 @@ the id of this axis. Inherited — - <div class='inline'><p> -the id of the perpendicular axis. Inherited -</p> + <div class='inline'> +<p>the id of the perpendicular axis. Inherited</p> </div> </li> @@ -317,9 +309,8 @@ the id of the perpendicular axis. Inherited — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -342,9 +333,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -Inherited -</p> + — <div class='inline'> +<p>Inherited</p> </div> </li> @@ -354,9 +344,8 @@ Inherited <span class="default"> </span> - — <div class='inline'><p> -Inherited -</p> + — <div class='inline'> +<p>Inherited</p> </div> </li> @@ -366,9 +355,8 @@ Inherited <span class="default"> </span> - — <div class='inline'><p> -Inherited -</p> + — <div class='inline'> +<p>Inherited</p> </div> </li> @@ -435,9 +423,8 @@ Inherited </p><div class="docstring"> <div class="discussion"> - <p> -The number of tick lables to skip between labels -</p> + +<p>The number of tick lables to skip between labels</p> </div> @@ -492,9 +479,8 @@ The number of tick lables to skip between labels </p><div class="docstring"> <div class="discussion"> - <p> -The number of tickmarks to be skipped before the next one is rendered. -</p> + +<p>The number of tickmarks to be skipped before the next one is rendered.</p> </div> @@ -553,9 +539,8 @@ The number of tickmarks to be skipped before the next one is rendered. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the series axis -</p> + +<p>Serializes the series axis</p> </div> @@ -574,9 +559,8 @@ Serializes the series axis — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -632,7 +616,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:47 2011 by + Generated on Wed Nov 30 08:46:21 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Series.html b/doc/Axlsx/Series.html index 0b905df5..a86ebc17 100644 --- a/doc/Axlsx/Series.html +++ b/doc/Axlsx/Series.html @@ -97,16 +97,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage series is to use Chart#add_series -</p> + <div class='inline'> +<p>The recommended way to manage series is to use Chart#add_series</p> </div> </div> -<p> -A Series defines the common series attributes and is the super class for -all concrete series types. -</p> + +<p>A Series defines the common series attributes and is the super class for +all concrete series types.</p> </div> @@ -151,9 +149,8 @@ all concrete series types. - <span class="summary_desc"><div class='inline'><p> -The chart that owns this series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The chart that owns this series.</p> </div></span> </li> @@ -178,9 +175,8 @@ The chart that owns this series. - <span class="summary_desc"><div class='inline'><p> -The title of the series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The title of the series.</p> </div></span> </li> @@ -215,9 +211,8 @@ The title of the series. - <span class="summary_desc"><div class='inline'><p> -The index of this series in the chart’s series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of this series in the chart’s series.</p> </div></span> </li> @@ -241,9 +236,8 @@ The index of this series in the chart’s series. - <span class="summary_desc"><div class='inline'><p> -Creates a new series. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new series.</p> </div></span> </li> @@ -265,9 +259,8 @@ Creates a new series. - <span class="summary_desc"><div class='inline'><p> -The order of this series in the chart’s series. -</p> + <span class="summary_desc"><div class='inline'> +<p>The order of this series in the chart’s series.</p> </div></span> </li> @@ -310,9 +303,8 @@ The order of this series in the chart’s series. - <span class="summary_desc"><div class='inline'><p> -Serializes the series. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the series.</p> </div></span> </li> @@ -333,9 +325,8 @@ Serializes the series. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new series -</p> + +<p>Creates a new series</p> </div> @@ -367,9 +358,8 @@ Creates a new series — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -455,9 +445,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The chart that owns this series -</p> + +<p>The chart that owns this series</p> </div> @@ -512,9 +501,8 @@ The chart that owns this series </p><div class="docstring"> <div class="discussion"> - <p> -The title of the series -</p> + +<p>The title of the series</p> </div> @@ -573,9 +561,8 @@ The title of the series </p><div class="docstring"> <div class="discussion"> - <p> -The index of this series in the chart’s series. -</p> + +<p>The index of this series in the chart’s series.</p> </div> @@ -627,10 +614,9 @@ The index of this series in the chart’s series. </p><div class="docstring"> <div class="discussion"> - <p> -The order of this series in the chart’s series. By default the order -is the index of the series. -</p> + +<p>The order of this series in the chart’s series. By default the order is +the index of the series.</p> </div> @@ -723,9 +709,8 @@ is the index of the series. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the series -</p> + +<p>Serializes the series</p> </div> @@ -744,9 +729,8 @@ Serializes the series — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -804,7 +788,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:55 2011 by + Generated on Wed Nov 30 08:46:26 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/SeriesTitle.html b/doc/Axlsx/SeriesTitle.html index 622aaf8a..08954e4c 100644 --- a/doc/Axlsx/SeriesTitle.html +++ b/doc/Axlsx/SeriesTitle.html @@ -96,10 +96,9 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -A series title is a Title with a slightly different serialization than -chart titles. -</p> + +<p>A series title is a Title with a slightly different serialization than +chart titles.</p> </div> @@ -148,9 +147,8 @@ chart titles. - <span class="summary_desc"><div class='inline'><p> -Serializes the series title. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the series title.</p> </div></span> </li> @@ -190,9 +188,8 @@ Serializes the series title. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the series title -</p> + +<p>Serializes the series title</p> </div> @@ -211,9 +208,8 @@ Serializes the series title — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -281,7 +277,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:58 2011 by + Generated on Wed Nov 30 08:46:29 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Styles.html b/doc/Axlsx/Styles.html index f3c8f0df..4c5f376d 100644 --- a/doc/Axlsx/Styles.html +++ b/doc/Axlsx/Styles.html @@ -97,20 +97,18 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -The Styles class manages worksheet styles In addition to creating the + +<p>The Styles class manages worksheet styles In addition to creating the require style objects for a valid xlsx package, this class provides the key mechanism for adding styles to your workbook, and safely applying them to the cells of your worksheet. All portions of the stylesheet are implemented here exception colors, which specify legacy and modified pallete colors, -and exLst, whic is used as a future feature data storage area. -</p> +and exLst, whic is used as a future feature data storage area.</p> </div> @@ -151,10 +149,9 @@ and exLst, whic is used as a future feature data storage area. - <span class="summary_desc"><div class='inline'><p> -The collection of borders used in this workbook Axlsx predefines -THIN_BORDER which can be used to put a border around all of your cells. -</p> + <span class="summary_desc"><div class='inline'> +<p>The collection of borders used in this workbook Axlsx predefines +THIN_BORDER which can be used to put a border around all of your cells.</p> </div></span> </li> @@ -179,10 +176,9 @@ THIN_BORDER which can be used to put a border around all of your cells. - <span class="summary_desc"><div class='inline'><p> -The collection of named styles, referencing cellStyleXfs items in the -workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>The collection of named styles, referencing cellStyleXfs items in the +workbook.</p> </div></span> </li> @@ -207,10 +203,9 @@ workbook. - <span class="summary_desc"><div class='inline'><p> -The collection of master formatting records for named cell styles, which -means records defined in cellStyles, in the workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>The collection of master formatting records for named cell styles, which +means records defined in cellStyles, in the workbook.</p> </div></span> </li> @@ -235,9 +230,8 @@ means records defined in cellStyles, in the workbook. - <span class="summary_desc"><div class='inline'><p> -The collection of master formatting records. -</p> + <span class="summary_desc"><div class='inline'> +<p>The collection of master formatting records.</p> </div></span> </li> @@ -262,9 +256,8 @@ The collection of master formatting records. - <span class="summary_desc"><div class='inline'><p> -The collection of non-cell formatting records used in the worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>The collection of non-cell formatting records used in the worksheet.</p> </div></span> </li> @@ -289,9 +282,8 @@ The collection of non-cell formatting records used in the worksheet. - <span class="summary_desc"><div class='inline'><p> -The collection of fills used in this workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>The collection of fills used in this workbook.</p> </div></span> </li> @@ -316,9 +308,8 @@ The collection of fills used in this workbook. - <span class="summary_desc"><div class='inline'><p> -The collection of fonts used in this workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>The collection of fonts used in this workbook.</p> </div></span> </li> @@ -343,9 +334,8 @@ The collection of fonts used in this workbook. - <span class="summary_desc"><div class='inline'><p> -numFmts for your styles. -</p> + <span class="summary_desc"><div class='inline'> +<p>numFmts for your styles.</p> </div></span> </li> @@ -370,10 +360,9 @@ numFmts for your styles. - <span class="summary_desc"><div class='inline'><p> -The collection of table styles that will be available to the user in the -excel UI. -</p> + <span class="summary_desc"><div class='inline'> +<p>The collection of table styles that will be available to the user in the +excel UI.</p> </div></span> </li> @@ -408,9 +397,8 @@ excel UI. - <span class="summary_desc"><div class='inline'><p> -Drastically simplifies style creation and management. -</p> + <span class="summary_desc"><div class='inline'> +<p>Drastically simplifies style creation and management.</p> </div></span> </li> @@ -434,10 +422,9 @@ Drastically simplifies style creation and management. - <span class="summary_desc"><div class='inline'><p> -Creates a new Styles object and prepopulates it with the requires objects -to generate a valid package style part. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Styles object and prepopulates it with the requires objects +to generate a valid package style part.</p> </div></span> </li> @@ -459,9 +446,8 @@ to generate a valid package style part. - <span class="summary_desc"><div class='inline'><p> -Serializes the styles document. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the styles document.</p> </div></span> </li> @@ -482,10 +468,9 @@ Serializes the styles document. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Styles object and prepopulates it with the requires objects -to generate a valid package style part. -</p> + +<p>Creates a new Styles object and prepopulates it with the requires objects +to generate a valid package style part.</p> </div> @@ -535,16 +520,14 @@ to generate a valid package style part. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -The collection of borders used in this workbook Axlsx predefines -THIN_BORDER which can be used to put a border around all of your cells. -</p> + +<p>The collection of borders used in this workbook Axlsx predefines +THIN_BORDER which can be used to put a border around all of your cells.</p> </div> @@ -609,16 +592,14 @@ THIN_BORDER which can be used to put a border around all of your cells. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -The collection of named styles, referencing cellStyleXfs items in the -workbook. -</p> + +<p>The collection of named styles, referencing cellStyleXfs items in the +workbook.</p> </div> @@ -683,16 +664,14 @@ workbook. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -The collection of master formatting records for named cell styles, which -means records defined in cellStyles, in the workbook -</p> + +<p>The collection of master formatting records for named cell styles, which +means records defined in cellStyles, in the workbook</p> </div> @@ -757,16 +736,14 @@ means records defined in cellStyles, in the workbook <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -The collection of master formatting records. This is the list that you will -actually use in styling a workbook. -</p> + +<p>The collection of master formatting records. This is the list that you will +actually use in styling a workbook.</p> </div> @@ -831,15 +808,13 @@ actually use in styling a workbook. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -The collection of non-cell formatting records used in the worksheet. -</p> + +<p>The collection of non-cell formatting records used in the worksheet.</p> </div> @@ -904,15 +879,13 @@ The collection of non-cell formatting records used in the worksheet. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -The collection of fills used in this workbook -</p> + +<p>The collection of fills used in this workbook</p> </div> @@ -977,15 +950,13 @@ The collection of fills used in this workbook <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -The collection of fonts used in this workbook -</p> + +<p>The collection of fonts used in this workbook</p> </div> @@ -1050,50 +1021,48 @@ The collection of fonts used in this workbook <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -numFmts for your styles. -</p> -<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> - <span class='id identifier id'>id</span> <span class='formatCode identifier id'>formatCode</span> - <span class='integer val'>0</span> <span class='General constant id'>General</span> - <span class='integer val'>1</span> <span class='integer val'>0</span> - <span class='integer val'>2</span> <span class='integer val'>0</span><span class='integer val'>.00</span> - <span class='integer val'>3</span> <span class='comment val'>#,##0</span> - <span class='integer val'>4</span> <span class='comment val'>#,##0.00</span> - <span class='integer val'>9</span> <span class='integer val'>0</span><span class='mod op'>%</span> - <span class='integer val'>10</span> <span class='integer val'>0</span><span class='integer val'>.00</span><span class='mod op'>%</span> - <span class='integer val'>11</span> <span class='integer val'>0</span><span class='float val'>.00E+00</span> - <span class='integer val'>12</span> <span class='comment val'># ?/?</span> - <span class='integer val'>13</span> <span class='comment val'># ??/??</span> - <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> - <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> - <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> - <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> - <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> - <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> - <span class='integer val'>20</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span> - <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> - <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> - <span class='integer val'>37</span> <span class='comment val'>#,##0 ;(#,##0)</span> - <span class='integer val'>38</span> <span class='comment val'>#,##0 ;[Red](#,##0)</span> - <span class='integer val'>39</span> <span class='comment val'>#,##0.00;(#,##0.00)</span> - <span class='integer val'>40</span> <span class='comment val'>#,##0.00;[Red](#,##0.00)</span> - <span class='integer val'>45</span> <span class='mm identifier id'>mm</span><span class='symbol val'>:ss</span> - <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> - <span class='integer val'>47</span> <span class='mmss identifier id'>mmss</span><span class='integer val'>.0</span> - <span class='integer val'>48</span> <span class='comment val'>##0.0E+0</span> - <span class='integer val'>49</span> @ - <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> - <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'>"0%"</span> - <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'>"yyyy/mm/dd"</span> - <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'>"yyyy/mm/dd hh:mm:ss"</span> + +<p>numFmts for your styles.</p> + +<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> +<span class='id identifier id'>id</span> <span class='formatCode identifier id'>formatCode</span> + <span class='integer val'>0</span> <span class='General constant id'>General</span> + <span class='integer val'>1</span> <span class='integer val'>0</span> + <span class='integer val'>2</span> <span class='integer val'>0</span><span class='integer val'>.00</span> + <span class='integer val'>3</span> <span class='comment val'>#,##0</span> + <span class='integer val'>4</span> <span class='comment val'>#,##0.00</span> + <span class='integer val'>9</span> <span class='integer val'>0</span><span class='mod op'>%</span> + <span class='integer val'>10</span> <span class='integer val'>0</span><span class='integer val'>.00</span><span class='mod op'>%</span> + <span class='integer val'>11</span> <span class='integer val'>0</span><span class='float val'>.00E+00</span> + <span class='integer val'>12</span> <span class='comment val'># ?/?</span> + <span class='integer val'>13</span> <span class='comment val'># ??/??</span> + <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> + <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> + <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> + <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> + <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> + <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> + <span class='integer val'>20</span> <span class='h identifier id'>h</span><span class='symbol val'>:mm</span> + <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> + <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> + <span class='integer val'>37</span> <span class='comment val'>#,##0 ;(#,##0)</span> + <span class='integer val'>38</span> <span class='comment val'>#,##0 ;[Red](#,##0)</span> + <span class='integer val'>39</span> <span class='comment val'>#,##0.00;(#,##0.00)</span> + <span class='integer val'>40</span> <span class='comment val'>#,##0.00;[Red](#,##0.00)</span> + <span class='integer val'>45</span> <span class='mm identifier id'>mm</span><span class='symbol val'>:ss</span> + <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> + <span class='integer val'>47</span> <span class='mmss identifier id'>mmss</span><span class='integer val'>.0</span> + <span class='integer val'>48</span> <span class='comment val'>##0.0E+0</span> + <span class='integer val'>49</span> @ +<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> + <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'>"0%"</span> + <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'>"yyyy/mm/dd"</span> + <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'>"yyyy/mm/dd hh:mm:ss"</span> </pre> @@ -1161,16 +1130,14 @@ numFmts for your styles. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is with add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is with add_style</p> </div> </div> -<p> -The collection of table styles that will be available to the user in the -excel UI -</p> + +<p>The collection of table styles that will be available to the user in the +excel UI</p> </div> @@ -1236,9 +1203,8 @@ excel UI </p><div class="docstring"> <div class="discussion"> - <p> -Drastically simplifies style creation and management. -</p> + +<p>Drastically simplifies style creation and management.</p> </div> @@ -1248,9 +1214,8 @@ Drastically simplifies style creation and management. <div class="examples"> <h3>Examples:</h3> - <h4><div class='inline'><p> -You Got Style -</p> + <h4><div class='inline'> +<p>You Got Style</p> </div></h4> <pre class="example code"><span class='require identifier id'>require</span> <span class='string val'>"rubygems"</span> <span class='comment val'># if that is your preferred way to manage gems!</span> <span class='require identifier id'>require</span> <span class='string val'>"axlsx"</span> @@ -1268,9 +1233,8 @@ You Got Style <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> </pre> - <h4><div class='inline'><p> -Styling specifically -</p> + <h4><div class='inline'> +<p>Styling specifically</p> </div></h4> <pre class="example code"><span class='comment val'># an example of applying specific styles to specific cells</span> <span class='require identifier id'>require</span> <span class='string val'>"rubygems"</span> <span class='comment val'># if that is your preferred way to manage gems!</span> @@ -1322,9 +1286,8 @@ Styling specifically — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -1343,9 +1306,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -The text color -</p> + — <div class='inline'> +<p>The text color</p> </div> </li> @@ -1355,9 +1317,8 @@ The text color <span class="default"> </span> - — <div class='inline'><p> -The text size -</p> + — <div class='inline'> +<p>The text size</p> </div> </li> @@ -1367,9 +1328,8 @@ The text size <span class="default"> </span> - — <div class='inline'><p> -Indicates if the text should be bold -</p> + — <div class='inline'> +<p>Indicates if the text should be bold</p> </div> </li> @@ -1379,9 +1339,8 @@ Indicates if the text should be bold <span class="default"> </span> - — <div class='inline'><p> -Indicates if the text should be italicised -</p> + — <div class='inline'> +<p>Indicates if the text should be italicised</p> </div> </li> @@ -1391,9 +1350,8 @@ Indicates if the text should be italicised <span class="default"> </span> - — <div class='inline'><p> -Indicates if the text should be rendered with a strikethrough -</p> + — <div class='inline'> +<p>Indicates if the text should be rendered with a strikethrough</p> </div> </li> @@ -1403,9 +1361,8 @@ Indicates if the text should be rendered with a strikethrough <span class="default"> </span> - — <div class='inline'><p> -Indicates if the text should be rendered with a shadow -</p> + — <div class='inline'> +<p>Indicates if the text should be rendered with a shadow</p> </div> </li> @@ -1415,9 +1372,8 @@ Indicates if the text should be rendered with a shadow <span class="default"> </span> - — <div class='inline'><p> -The character set to use. -</p> + — <div class='inline'> +<p>The character set to use.</p> </div> </li> @@ -1427,9 +1383,8 @@ The character set to use. <span class="default"> </span> - — <div class='inline'><p> -The font family to use. -</p> + — <div class='inline'> +<p>The font family to use.</p> </div> </li> @@ -1439,9 +1394,8 @@ The font family to use. <span class="default"> </span> - — <div class='inline'><p> -The name of the font to use -</p> + — <div class='inline'> +<p>The name of the font to use</p> </div> </li> @@ -1451,9 +1405,8 @@ The name of the font to use <span class="default"> </span> - — <div class='inline'><p> -The number format to apply -</p> + — <div class='inline'> +<p>The number format to apply</p> </div> </li> @@ -1463,9 +1416,8 @@ The number format to apply <span class="default"> </span> - — <div class='inline'><p> -The formatting to apply. If this is specified, num_fmt is ignored. -</p> + — <div class='inline'> +<p>The formatting to apply. If this is specified, num_fmt is ignored.</p> </div> </li> @@ -1475,9 +1427,8 @@ The formatting to apply. If this is specified, num_fmt is ignored. <span class="default"> </span> - — <div class='inline'><p> -The border style to use. -</p> + — <div class='inline'> +<p>The border style to use.</p> </div> </li> @@ -1487,9 +1438,8 @@ The border style to use. <span class="default"> </span> - — <div class='inline'><p> -The background color to apply to the cell -</p> + — <div class='inline'> +<p>The background color to apply to the cell</p> </div> </li> @@ -1499,9 +1449,8 @@ The background color to apply to the cell <span class="default"> </span> - — <div class='inline'><p> -Indicates if the cell should be hidden -</p> + — <div class='inline'> +<p>Indicates if the cell should be hidden</p> </div> </li> @@ -1511,9 +1460,8 @@ Indicates if the cell should be hidden <span class="default"> </span> - — <div class='inline'><p> -Indicates if the cell should be locked -</p> + — <div class='inline'> +<p>Indicates if the cell should be locked</p> </div> </li> @@ -1523,9 +1471,8 @@ Indicates if the cell should be locked <span class="default"> </span> - — <div class='inline'><p> -A hash defining any of the attributes used in CellAlignment -</p> + — <div class='inline'> +<p>A hash defining any of the attributes used in CellAlignment</p> </div> </li> @@ -1681,9 +1628,8 @@ A hash defining any of the attributes used in CellAlignment </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the styles document -</p> + +<p>Serializes the styles document</p> </div> @@ -1745,7 +1691,7 @@ Serializes the styles document </div> <div id="footer"> - Generated on Tue Nov 29 13:29:00 2011 by + Generated on Wed Nov 30 08:46:31 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/TableStyle.html b/doc/Axlsx/TableStyle.html index 2c563660..41cd0318 100644 --- a/doc/Axlsx/TableStyle.html +++ b/doc/Axlsx/TableStyle.html @@ -99,16 +99,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Table are not supported in this version and only the defaults required for -a valid workbook are created. -</p> + <div class='inline'> +<p>Table are not supported in this version and only the defaults required for +a valid workbook are created.</p> </div> </div> -<p> -A single table style definition and is a collection for tableStyleElements -</p> + +<p>A single table style definition and is a collection for tableStyleElements</p> </div> @@ -144,9 +142,8 @@ A single table style definition and is a collection for tableStyleElements - <span class="summary_desc"><div class='inline'><p> -The name of this table style. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name of this table style.</p> </div></span> </li> @@ -171,9 +168,8 @@ The name of this table style. - <span class="summary_desc"><div class='inline'><p> -indicates if this style should be applied to pivot tables. -</p> + <span class="summary_desc"><div class='inline'> +<p>indicates if this style should be applied to pivot tables.</p> </div></span> </li> @@ -198,9 +194,8 @@ indicates if this style should be applied to pivot tables. - <span class="summary_desc"><div class='inline'><p> -indicates if this style should be applied to tables. -</p> + <span class="summary_desc"><div class='inline'> +<p>indicates if this style should be applied to tables.</p> </div></span> </li> @@ -245,9 +240,8 @@ indicates if this style should be applied to tables. - <span class="summary_desc"><div class='inline'><p> -creates a new TableStyle object. -</p> + <span class="summary_desc"><div class='inline'> +<p>creates a new TableStyle object.</p> </div></span> </li> @@ -269,9 +263,8 @@ creates a new TableStyle object. - <span class="summary_desc"><div class='inline'><p> -Serializes the table style. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the table style.</p> </div></span> </li> @@ -297,9 +290,8 @@ Serializes the table style. </p><div class="docstring"> <div class="discussion"> - <p> -creates a new TableStyle object -</p> + +<p>creates a new TableStyle object</p> </div> @@ -331,9 +323,8 @@ creates a new TableStyle object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -380,9 +371,8 @@ a customizable set of options — - <div class='inline'><p> -if name option is not provided. -</p> + <div class='inline'> +<p>if name option is not provided.</p> </div> </li> @@ -446,9 +436,8 @@ if name option is not provided. </p><div class="docstring"> <div class="discussion"> - <p> -The name of this table style -</p> + +<p>The name of this table style</p> </div> @@ -503,9 +492,8 @@ The name of this table style </p><div class="docstring"> <div class="discussion"> - <p> -indicates if this style should be applied to pivot tables -</p> + +<p>indicates if this style should be applied to pivot tables</p> </div> @@ -560,9 +548,8 @@ indicates if this style should be applied to pivot tables </p><div class="docstring"> <div class="discussion"> - <p> -indicates if this style should be applied to tables -</p> + +<p>indicates if this style should be applied to tables</p> </div> @@ -621,9 +608,8 @@ indicates if this style should be applied to tables </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the table style -</p> + +<p>Serializes the table style</p> </div> @@ -642,9 +628,8 @@ Serializes the table style — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -696,7 +681,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:47 2011 by + Generated on Wed Nov 30 08:46:21 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/TableStyleElement.html b/doc/Axlsx/TableStyleElement.html index fa9ef1a0..3b629497 100644 --- a/doc/Axlsx/TableStyleElement.html +++ b/doc/Axlsx/TableStyleElement.html @@ -97,16 +97,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -tables and table styles are not supported in this version. This class -exists in preparation for that support. -</p> + <div class='inline'> +<p>tables and table styles are not supported in this version. This class +exists in preparation for that support.</p> </div> </div> -<p> -an element of style that belongs to a table style. -</p> + +<p>an element of style that belongs to a table style.</p> </div> @@ -138,9 +136,8 @@ an element of style that belongs to a table style. - <span class="summary_desc"><div class='inline'><p> -The dxfId this style element points to. -</p> + <span class="summary_desc"><div class='inline'> +<p>The dxfId this style element points to.</p> </div></span> </li> @@ -165,10 +162,9 @@ The dxfId this style element points to. - <span class="summary_desc"><div class='inline'><p> -Number of rows or columns used in striping when the type is firstRowStripe, -secondRowStripe, firstColumnStripe, or secondColumnStripe. -</p> + <span class="summary_desc"><div class='inline'> +<p>Number of rows or columns used in striping when the type is firstRowStripe, +secondRowStripe, firstColumnStripe, or secondColumnStripe.</p> </div></span> </li> @@ -193,9 +189,8 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe. - <span class="summary_desc"><div class='inline'><p> -The type of style element. -</p> + <span class="summary_desc"><div class='inline'> +<p>The type of style element.</p> </div></span> </li> @@ -232,9 +227,8 @@ The type of style element. - <span class="summary_desc"><div class='inline'><p> -creates a new TableStyleElement object. -</p> + <span class="summary_desc"><div class='inline'> +<p>creates a new TableStyleElement object.</p> </div></span> </li> @@ -256,9 +250,8 @@ creates a new TableStyleElement object. - <span class="summary_desc"><div class='inline'><p> -Serializes the table style element. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the table style element.</p> </div></span> </li> @@ -279,9 +272,8 @@ Serializes the table style element. </p><div class="docstring"> <div class="discussion"> - <p> -creates a new TableStyleElement object -</p> + +<p>creates a new TableStyleElement object</p> </div> @@ -302,9 +294,8 @@ creates a new TableStyleElement object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -391,9 +382,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The dxfId this style element points to -</p> + +<p>The dxfId this style element points to</p> </div> @@ -448,10 +438,9 @@ The dxfId this style element points to </p><div class="docstring"> <div class="discussion"> - <p> -Number of rows or columns used in striping when the type is firstRowStripe, -secondRowStripe, firstColumnStripe, or secondColumnStripe. -</p> + +<p>Number of rows or columns used in striping when the type is firstRowStripe, +secondRowStripe, firstColumnStripe, or secondColumnStripe.</p> </div> @@ -506,38 +495,37 @@ secondRowStripe, firstColumnStripe, or secondColumnStripe. </p><div class="docstring"> <div class="discussion"> - <p> -The type of style element. The following type are allowed -</p> -<pre class="code"> - <span class='symbol val'>:wholeTable</span> - <span class='symbol val'>:headerRow</span> - <span class='symbol val'>:totalRow</span> - <span class='symbol val'>:firstColumn</span> - <span class='symbol val'>:lastColumn</span> - <span class='symbol val'>:firstRowStripe</span> - <span class='symbol val'>:secondRowStripe</span> - <span class='symbol val'>:firstColumnStripe</span> - <span class='symbol val'>:secondColumnStripe</span> - <span class='symbol val'>:firstHeaderCell</span> - <span class='symbol val'>:lastHeaderCell</span> - <span class='symbol val'>:firstTotalCell</span> - <span class='symbol val'>:lastTotalCell</span> - <span class='symbol val'>:firstSubtotalColumn</span> - <span class='symbol val'>:secondSubtotalColumn</span> - <span class='symbol val'>:thirdSubtotalColumn</span> - <span class='symbol val'>:firstSubtotalRow</span> - <span class='symbol val'>:secondSubtotalRow</span> - <span class='symbol val'>:thirdSubtotalRow</span> - <span class='symbol val'>:blankRow</span> - <span class='symbol val'>:firstColumnSubheading</span> - <span class='symbol val'>:secondColumnSubheading</span> - <span class='symbol val'>:thirdColumnSubheading</span> - <span class='symbol val'>:firstRowSubheading</span> - <span class='symbol val'>:secondRowSubheading</span> - <span class='symbol val'>:thirdRowSubheading</span> - <span class='symbol val'>:pageFieldLabels</span> - <span class='symbol val'>:pageFieldValues</span> + +<p>The type of style element. The following type are allowed</p> + +<pre class="code"><span class='symbol val'>:wholeTable</span> +<span class='symbol val'>:headerRow</span> +<span class='symbol val'>:totalRow</span> +<span class='symbol val'>:firstColumn</span> +<span class='symbol val'>:lastColumn</span> +<span class='symbol val'>:firstRowStripe</span> +<span class='symbol val'>:secondRowStripe</span> +<span class='symbol val'>:firstColumnStripe</span> +<span class='symbol val'>:secondColumnStripe</span> +<span class='symbol val'>:firstHeaderCell</span> +<span class='symbol val'>:lastHeaderCell</span> +<span class='symbol val'>:firstTotalCell</span> +<span class='symbol val'>:lastTotalCell</span> +<span class='symbol val'>:firstSubtotalColumn</span> +<span class='symbol val'>:secondSubtotalColumn</span> +<span class='symbol val'>:thirdSubtotalColumn</span> +<span class='symbol val'>:firstSubtotalRow</span> +<span class='symbol val'>:secondSubtotalRow</span> +<span class='symbol val'>:thirdSubtotalRow</span> +<span class='symbol val'>:blankRow</span> +<span class='symbol val'>:firstColumnSubheading</span> +<span class='symbol val'>:secondColumnSubheading</span> +<span class='symbol val'>:thirdColumnSubheading</span> +<span class='symbol val'>:firstRowSubheading</span> +<span class='symbol val'>:secondRowSubheading</span> +<span class='symbol val'>:thirdRowSubheading</span> +<span class='symbol val'>:pageFieldLabels</span> +<span class='symbol val'>:pageFieldValues</span> </pre> @@ -597,9 +585,8 @@ The type of style element. The following type are allowed </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the table style element -</p> + +<p>Serializes the table style element</p> </div> @@ -618,9 +605,8 @@ Serializes the table style element — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -668,7 +654,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:55 2011 by + Generated on Wed Nov 30 08:46:27 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/TableStyles.html b/doc/Axlsx/TableStyles.html index b86cd4b8..4f265099 100644 --- a/doc/Axlsx/TableStyles.html +++ b/doc/Axlsx/TableStyles.html @@ -99,18 +99,16 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -Support for custom table styles does not exist in this version. Many of the + <div class='inline'> +<p>Support for custom table styles does not exist in this version. Many of the classes required are defined in preparation for future release. Please do -not attempt to add custom table styles. -</p> +not attempt to add custom table styles.</p> </div> </div> -<p> -TableStyles represents a collection of style definitions for table styles -and pivot table styles. -</p> + +<p>TableStyles represents a collection of style definitions for table styles +and pivot table styles.</p> </div> @@ -146,9 +144,8 @@ and pivot table styles. - <span class="summary_desc"><div class='inline'><p> -The default pivot table style. -</p> + <span class="summary_desc"><div class='inline'> +<p>The default pivot table style.</p> </div></span> </li> @@ -173,9 +170,8 @@ The default pivot table style. - <span class="summary_desc"><div class='inline'><p> -The default table style. -</p> + <span class="summary_desc"><div class='inline'> +<p>The default table style.</p> </div></span> </li> @@ -220,10 +216,9 @@ The default table style. - <span class="summary_desc"><div class='inline'><p> -Creates a new TableStyles object that is a container for TableStyle -objects. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new TableStyles object that is a container for TableStyle +objects.</p> </div></span> </li> @@ -245,9 +240,8 @@ objects. - <span class="summary_desc"><div class='inline'><p> -Serializes the table styles element. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the table styles element.</p> </div></span> </li> @@ -273,9 +267,8 @@ Serializes the table styles element. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new TableStyles object that is a container for TableStyle objects -</p> + +<p>Creates a new TableStyles object that is a container for TableStyle objects</p> </div> @@ -296,9 +289,8 @@ Creates a new TableStyles object that is a container for TableStyle objects — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -386,10 +378,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The default pivot table style. The default value is -‘PivotStyleLight6’ -</p> + +<p>The default pivot table style. The default value is ‘PivotStyleLight6’</p> </div> @@ -444,10 +434,8 @@ The default pivot table style. The default value is </p><div class="docstring"> <div class="discussion"> - <p> -The default table style. The default value is -‘TableStyleMedium9’ -</p> + +<p>The default table style. The default value is ‘TableStyleMedium9’</p> </div> @@ -506,9 +494,8 @@ The default table style. The default value is </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the table styles element -</p> + +<p>Serializes the table styles element</p> </div> @@ -527,9 +514,8 @@ Serializes the table styles element — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -585,7 +571,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:29:01 2011 by + Generated on Wed Nov 30 08:46:33 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Title.html b/doc/Axlsx/Title.html index a027360a..d4b7daf6 100644 --- a/doc/Axlsx/Title.html +++ b/doc/Axlsx/Title.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -A Title stores information about the title of a chart -</p> + +<p>A Title stores information about the title of a chart</p> </div> @@ -132,9 +131,8 @@ A Title stores information about the title of a chart - <span class="summary_desc"><div class='inline'><p> -The cell that holds the text for the title. -</p> + <span class="summary_desc"><div class='inline'> +<p>The cell that holds the text for the title.</p> </div></span> </li> @@ -159,9 +157,8 @@ The cell that holds the text for the title. - <span class="summary_desc"><div class='inline'><p> -The text to be shown. -</p> + <span class="summary_desc"><div class='inline'> +<p>The text to be shown.</p> </div></span> </li> @@ -198,9 +195,8 @@ The text to be shown. - <span class="summary_desc"><div class='inline'><p> -Creates a new Title object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Title object.</p> </div></span> </li> @@ -222,9 +218,8 @@ Creates a new Title object. - <span class="summary_desc"><div class='inline'><p> -Serializes the chart title. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the chart title.</p> </div></span> </li> @@ -245,9 +240,8 @@ Serializes the chart title. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Title object -</p> + +<p>Creates a new Title object</p> </div> @@ -268,9 +262,8 @@ Creates a new Title object — - <div class='inline'><p> -The cell or string to be used for the chart’s title -</p> + <div class='inline'> +<p>The cell or string to be used for the chart’s title</p> </div> </li> @@ -319,10 +312,9 @@ The cell or string to be used for the chart’s title </p><div class="docstring"> <div class="discussion"> - <p> -The cell that holds the text for the title. Setting this property will -automatically update the text attribute. -</p> + +<p>The cell that holds the text for the title. Setting this property will +automatically update the text attribute.</p> </div> @@ -377,10 +369,9 @@ automatically update the text attribute. </p><div class="docstring"> <div class="discussion"> - <p> -The text to be shown. Setting this property directly with a string will -remove the cell reference. -</p> + +<p>The text to be shown. Setting this property directly with a string will +remove the cell reference.</p> </div> @@ -439,9 +430,8 @@ remove the cell reference. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the chart title -</p> + +<p>Serializes the chart title</p> </div> @@ -460,9 +450,8 @@ Serializes the chart title — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -534,7 +523,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:29:01 2011 by + Generated on Wed Nov 30 08:46:33 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/TwoCellAnchor.html b/doc/Axlsx/TwoCellAnchor.html index 88616ceb..388b1e26 100644 --- a/doc/Axlsx/TwoCellAnchor.html +++ b/doc/Axlsx/TwoCellAnchor.html @@ -97,16 +97,14 @@ <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage drawings and charts is Worksheet#add_chart. -Anchors are specified by the :start_at and :end_at options to that method. -</p> + <div class='inline'> +<p>The recommended way to manage drawings and charts is Worksheet#add_chart. +Anchors are specified by the :start_at and :end_at options to that method.</p> </div> </div> -<p> -This class details the anchor points for drawings. -</p> + +<p>This class details the anchor points for drawings.</p> </div> @@ -145,9 +143,8 @@ This class details the anchor points for drawings. - <span class="summary_desc"><div class='inline'><p> -The drawing that holds this anchor. -</p> + <span class="summary_desc"><div class='inline'> +<p>The drawing that holds this anchor.</p> </div></span> </li> @@ -172,9 +169,8 @@ The drawing that holds this anchor. - <span class="summary_desc"><div class='inline'><p> -A marker that defines the from cell anchor. -</p> + <span class="summary_desc"><div class='inline'> +<p>A marker that defines the from cell anchor.</p> </div></span> </li> @@ -199,9 +195,8 @@ A marker that defines the from cell anchor. - <span class="summary_desc"><div class='inline'><p> -The object this anchor hosts. -</p> + <span class="summary_desc"><div class='inline'> +<p>The object this anchor hosts.</p> </div></span> </li> @@ -226,9 +221,8 @@ The object this anchor hosts. - <span class="summary_desc"><div class='inline'><p> -A marker that returns the to cell anchor. -</p> + <span class="summary_desc"><div class='inline'> +<p>A marker that returns the to cell anchor.</p> </div></span> </li> @@ -263,9 +257,8 @@ A marker that returns the to cell anchor. - <span class="summary_desc"><div class='inline'><p> -Creates a graphic frame and chart object associated with this anchor. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a graphic frame and chart object associated with this anchor.</p> </div></span> </li> @@ -287,9 +280,8 @@ Creates a graphic frame and chart object associated with this anchor. - <span class="summary_desc"><div class='inline'><p> -The index of this anchor in the drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of this anchor in the drawing.</p> </div></span> </li> @@ -313,10 +305,9 @@ The index of this anchor in the drawing. - <span class="summary_desc"><div class='inline'><p> -Creates a new TwoCellAnchor object and sets up a reference to the from and -to markers in the graphic_frame’s chart. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new TwoCellAnchor object and sets up a reference to the from and +to markers in the graphic_frame’s chart.</p> </div></span> </li> @@ -338,9 +329,8 @@ to markers in the graphic_frame’s chart. - <span class="summary_desc"><div class='inline'><p> -Serializes the two cell anchor. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the two cell anchor.</p> </div></span> </li> @@ -364,17 +354,15 @@ Serializes the two cell anchor. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -the chart_type parameter will be replaced with object in v. 2.0.0 -</p> + <div class='inline'> +<p>the chart_type parameter will be replaced with object in v. 2.0.0</p> </div> </div> -<p> -Creates a new TwoCellAnchor object and sets up a reference to the from and -to markers in the graphic_frame’s chart. That means that you can do -stuff like c = worksheet.add_chart Axlsx::Chart c.start_at 5, 9 -</p> + +<p>Creates a new TwoCellAnchor object and sets up a reference to the from and +to markers in the graphic_frame’s chart. That means that you can do +stuff like c = worksheet.add_chart Axlsx::Chart c.start_at 5, 9</p> </div> @@ -404,10 +392,9 @@ stuff like c = worksheet.add_chart Axlsx::Chart c.start_at 5, 9 — - <div class='inline'><p> -This is passed to the graphic frame for instantiation. must be Chart or a -subclass of Chart -</p> + <div class='inline'> +<p>This is passed to the graphic frame for instantiation. must be Chart or a +subclass of Chart</p> </div> </li> @@ -422,9 +409,8 @@ subclass of Chart — - <div class='inline'><p> -The object this anchor holds. -</p> + <div class='inline'> +<p>The object this anchor holds.</p> </div> </li> @@ -441,9 +427,8 @@ The object this anchor holds. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -464,9 +449,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -the col, row to start at -</p> + — <div class='inline'> +<p>the col, row to start at</p> </div> </li> @@ -476,9 +460,8 @@ the col, row to start at <span class="default"> </span> - — <div class='inline'><p> -the col, row to end at -</p> + — <div class='inline'> +<p>the col, row to end at</p> </div> </li> @@ -529,9 +512,8 @@ the col, row to end at </p><div class="docstring"> <div class="discussion"> - <p> -The drawing that holds this anchor -</p> + +<p>The drawing that holds this anchor</p> </div> @@ -586,10 +568,9 @@ The drawing that holds this anchor </p><div class="docstring"> <div class="discussion"> - <p> -A marker that defines the from cell anchor. The default from column and row -are 0 and 0 respectively -</p> + +<p>A marker that defines the from cell anchor. The default from column and row +are 0 and 0 respectively</p> </div> @@ -644,9 +625,8 @@ are 0 and 0 respectively </p><div class="docstring"> <div class="discussion"> - <p> -The object this anchor hosts -</p> + +<p>The object this anchor hosts</p> </div> @@ -701,10 +681,9 @@ The object this anchor hosts </p><div class="docstring"> <div class="discussion"> - <p> -A marker that returns the to cell anchor. The default to column and row are -5 and 10 respectively -</p> + +<p>A marker that returns the to cell anchor. The default to column and row are +5 and 10 respectively</p> </div> @@ -763,9 +742,8 @@ A marker that returns the to cell anchor. The default to column and row are </p><div class="docstring"> <div class="discussion"> - <p> -Creates a graphic frame and chart object associated with this anchor -</p> + +<p>Creates a graphic frame and chart object associated with this anchor</p> </div> @@ -819,9 +797,8 @@ Creates a graphic frame and chart object associated with this anchor </p><div class="docstring"> <div class="discussion"> - <p> -The index of this anchor in the drawing -</p> + +<p>The index of this anchor in the drawing</p> </div> @@ -873,9 +850,8 @@ The index of this anchor in the drawing </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the two cell anchor -</p> + +<p>Serializes the two cell anchor</p> </div> @@ -894,9 +870,8 @@ Serializes the two cell anchor — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -964,7 +939,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:51 2011 by + Generated on Wed Nov 30 08:46:24 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/ValAxis.html b/doc/Axlsx/ValAxis.html index 3f37db0e..4096a451 100644 --- a/doc/Axlsx/ValAxis.html +++ b/doc/Axlsx/ValAxis.html @@ -96,9 +96,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -the ValAxis class defines a chart value axis. -</p> + +<p>the ValAxis class defines a chart value axis.</p> </div> @@ -134,9 +133,8 @@ the ValAxis class defines a chart value axis. - <span class="summary_desc"><div class='inline'><p> -This element specifies how the value axis crosses the category axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>This element specifies how the value axis crosses the category axis.</p> </div></span> </li> @@ -181,9 +179,8 @@ This element specifies how the value axis crosses the category axis. - <span class="summary_desc"><div class='inline'><p> -Creates a new ValAxis object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new ValAxis object.</p> </div></span> </li> @@ -205,9 +202,8 @@ Creates a new ValAxis object. - <span class="summary_desc"><div class='inline'><p> -Serializes the value axis. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the value axis.</p> </div></span> </li> @@ -233,9 +229,8 @@ Serializes the value axis. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new ValAxis object -</p> + +<p>Creates a new ValAxis object</p> </div> @@ -254,9 +249,8 @@ Creates a new ValAxis object — - <div class='inline'><p> -the id of this axis -</p> + <div class='inline'> +<p>the id of this axis</p> </div> </li> @@ -271,9 +265,8 @@ the id of this axis — - <div class='inline'><p> -the id of the perpendicular axis -</p> + <div class='inline'> +<p>the id of the perpendicular axis</p> </div> </li> @@ -290,9 +283,8 @@ the id of the perpendicular axis — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -390,10 +382,9 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -This element specifies how the value axis crosses the category axis. must -be one of [:between, :midCat] -</p> + +<p>This element specifies how the value axis crosses the category axis. must +be one of [:between, :midCat]</p> </div> @@ -452,9 +443,8 @@ be one of [:between, :midCat] </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the value axis -</p> + +<p>Serializes the value axis</p> </div> @@ -473,9 +463,8 @@ Serializes the value axis — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -529,7 +518,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:49 2011 by + Generated on Wed Nov 30 08:46:22 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/ValAxisData.html b/doc/Axlsx/ValAxisData.html index 61811a25..cbc2210f 100644 --- a/doc/Axlsx/ValAxisData.html +++ b/doc/Axlsx/ValAxisData.html @@ -98,9 +98,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The ValAxisData class manages the values for a chart value series. -</p> + +<p>The ValAxisData class manages the values for a chart value series.</p> </div> @@ -156,9 +155,8 @@ The ValAxisData class manages the values for a chart value series. - <span class="summary_desc"><div class='inline'><p> -Serializes the value axis data. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the value axis data.</p> </div></span> </li> @@ -213,9 +211,8 @@ Serializes the value axis data. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the value axis data -</p> + +<p>Serializes the value axis data</p> </div> @@ -234,9 +231,8 @@ Serializes the value axis data — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -312,7 +308,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:44 2011 by + Generated on Wed Nov 30 08:46:36 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/View3D.html b/doc/Axlsx/View3D.html index 382f182c..324478c2 100644 --- a/doc/Axlsx/View3D.html +++ b/doc/Axlsx/View3D.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -3D attributes for a chart. -</p> + +<p>3D attributes for a chart.</p> </div> @@ -112,9 +111,8 @@ <dt id="H_PERCENT_REGEX-constant" class="">H_PERCENT_REGEX = <div class="docstring"> <div class="discussion"> - <p> -Validation for hPercent -</p> + +<p>Validation for hPercent</p> </div> @@ -130,9 +128,8 @@ Validation for hPercent <dt id="DEPTH_PERCENT_REGEX-constant" class="">DEPTH_PERCENT_REGEX = <div class="docstring"> <div class="discussion"> - <p> -validation for depthPercent -</p> + +<p>validation for depthPercent</p> </div> @@ -171,9 +168,8 @@ validation for depthPercent - <span class="summary_desc"><div class='inline'><p> -depth or chart as % of chart width must be between 20% and 2000%. -</p> + <span class="summary_desc"><div class='inline'> +<p>depth or chart as % of chart width must be between 20% and 2000%.</p> </div></span> </li> @@ -198,9 +194,8 @@ depth or chart as % of chart width must be between 20% and 2000%. - <span class="summary_desc"><div class='inline'><p> -height of chart as % of chart must be between 5% and 500%. -</p> + <span class="summary_desc"><div class='inline'> +<p>height of chart as % of chart must be between 5% and 500%.</p> </div></span> </li> @@ -225,9 +220,8 @@ height of chart as % of chart must be between 5% and 500%. - <span class="summary_desc"><div class='inline'><p> -field of view angle. -</p> + <span class="summary_desc"><div class='inline'> +<p>field of view angle.</p> </div></span> </li> @@ -252,9 +246,8 @@ field of view angle. - <span class="summary_desc"><div class='inline'><p> -Chart axis are at right angles. -</p> + <span class="summary_desc"><div class='inline'> +<p>Chart axis are at right angles.</p> </div></span> </li> @@ -279,9 +272,8 @@ Chart axis are at right angles. - <span class="summary_desc"><div class='inline'><p> -x rotation for the chart must be between -90 and 90. -</p> + <span class="summary_desc"><div class='inline'> +<p>x rotation for the chart must be between -90 and 90.</p> </div></span> </li> @@ -306,9 +298,8 @@ x rotation for the chart must be between -90 and 90. - <span class="summary_desc"><div class='inline'><p> -y rotation for the chart must be between 0 and 360. -</p> + <span class="summary_desc"><div class='inline'> +<p>y rotation for the chart must be between 0 and 360.</p> </div></span> </li> @@ -345,9 +336,8 @@ y rotation for the chart must be between 0 and 360. - <span class="summary_desc"><div class='inline'><p> -Creates a new View3D for charts. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new View3D for charts.</p> </div></span> </li> @@ -369,9 +359,8 @@ Creates a new View3D for charts. - <span class="summary_desc"><div class='inline'><p> -Serializes the view3D properties. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the view3D properties.</p> </div></span> </li> @@ -392,9 +381,8 @@ Serializes the view3D properties. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new View3D for charts -</p> + +<p>Creates a new View3D for charts</p> </div> @@ -415,9 +403,8 @@ Creates a new View3D for charts — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -533,9 +520,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -depth or chart as % of chart width must be between 20% and 2000% -</p> + +<p>depth or chart as % of chart width must be between 20% and 2000%</p> </div> @@ -590,9 +576,8 @@ depth or chart as % of chart width must be between 20% and 2000% </p><div class="docstring"> <div class="discussion"> - <p> -height of chart as % of chart must be between 5% and 500% -</p> + +<p>height of chart as % of chart must be between 5% and 500%</p> </div> @@ -647,9 +632,8 @@ height of chart as % of chart must be between 5% and 500% </p><div class="docstring"> <div class="discussion"> - <p> -field of view angle -</p> + +<p>field of view angle</p> </div> @@ -704,9 +688,8 @@ field of view angle </p><div class="docstring"> <div class="discussion"> - <p> -Chart axis are at right angles -</p> + +<p>Chart axis are at right angles</p> </div> @@ -761,9 +744,8 @@ Chart axis are at right angles </p><div class="docstring"> <div class="discussion"> - <p> -x rotation for the chart must be between -90 and 90 -</p> + +<p>x rotation for the chart must be between -90 and 90</p> </div> @@ -818,9 +800,8 @@ x rotation for the chart must be between -90 and 90 </p><div class="docstring"> <div class="discussion"> - <p> -y rotation for the chart must be between 0 and 360 -</p> + +<p>y rotation for the chart must be between 0 and 360</p> </div> @@ -879,9 +860,8 @@ y rotation for the chart must be between 0 and 360 </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the view3D properties -</p> + +<p>Serializes the view3D properties</p> </div> @@ -900,9 +880,8 @@ Serializes the view3D properties — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -964,7 +943,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:58 2011 by + Generated on Wed Nov 30 08:46:29 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Workbook.html b/doc/Axlsx/Workbook.html index 6d18fd7c..915b139b 100644 --- a/doc/Axlsx/Workbook.html +++ b/doc/Axlsx/Workbook.html @@ -94,32 +94,31 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The Workbook class is an xlsx workbook that manages worksheets, charts, + +<p>The Workbook class is an xlsx workbook that manages worksheets, charts, drawings and styles. The following parts of the Office Open XML spreadsheet -specification are not implimented in this version. -</p> -<pre class="code"> - <span class='bookViews identifier id'>bookViews</span> - <span class='calcPr identifier id'>calcPr</span> - <span class='customWorkbookViews identifier id'>customWorkbookViews</span> - <span class='definedNames identifier id'>definedNames</span> - <span class='externalReferences identifier id'>externalReferences</span> - <span class='extLst identifier id'>extLst</span> - <span class='fileRecoveryPr identifier id'>fileRecoveryPr</span> - <span class='fileSharing identifier id'>fileSharing</span> - <span class='fileVersion identifier id'>fileVersion</span> - <span class='functionGroups identifier id'>functionGroups</span> - <span class='oleSize identifier id'>oleSize</span> - <span class='pivotCaches identifier id'>pivotCaches</span> - <span class='smartTagPr identifier id'>smartTagPr</span> - <span class='smartTagTypes identifier id'>smartTagTypes</span> - <span class='webPublishing identifier id'>webPublishing</span> - <span class='webPublishObjects identifier id'>webPublishObjects</span> - <span class='workbookProtection identifier id'>workbookProtection</span> - <span class='workbookPr identifier id'>workbookPr</span><span class='mult op'>*</span> - - <span class='mult op'>*</span><span class='workbookPr identifier id'>workbookPr</span> <span class='is identifier id'>is</span> <span class='only identifier id'>only</span> <span class='supported identifier id'>supported</span> <span class='to identifier id'>to</span> <span class='the identifier id'>the</span> <span class='extend identifier id'>extend</span> <span class='of identifier id'>of</span> <span class='date1904 identifier id'>date1904</span> +specification are not implimented in this version.</p> + +<pre class="code"><span class='bookViews identifier id'>bookViews</span> +<span class='calcPr identifier id'>calcPr</span> +<span class='customWorkbookViews identifier id'>customWorkbookViews</span> +<span class='definedNames identifier id'>definedNames</span> +<span class='externalReferences identifier id'>externalReferences</span> +<span class='extLst identifier id'>extLst</span> +<span class='fileRecoveryPr identifier id'>fileRecoveryPr</span> +<span class='fileSharing identifier id'>fileSharing</span> +<span class='fileVersion identifier id'>fileVersion</span> +<span class='functionGroups identifier id'>functionGroups</span> +<span class='oleSize identifier id'>oleSize</span> +<span class='pivotCaches identifier id'>pivotCaches</span> +<span class='smartTagPr identifier id'>smartTagPr</span> +<span class='smartTagTypes identifier id'>smartTagTypes</span> +<span class='webPublishing identifier id'>webPublishing</span> +<span class='webPublishObjects identifier id'>webPublishObjects</span> +<span class='workbookProtection identifier id'>workbookProtection</span> +<span class='workbookPr identifier id'>workbookPr</span><span class='mult op'>*</span> + +<span class='mult op'>*</span><span class='workbookPr identifier id'>workbookPr</span> <span class='is identifier id'>is</span> <span class='only identifier id'>only</span> <span class='supported identifier id'>supported</span> <span class='to identifier id'>to</span> <span class='the identifier id'>the</span> <span class='extend identifier id'>extend</span> <span class='of identifier id'>of</span> <span class='date1904 identifier id'>date1904</span> </pre> @@ -136,10 +135,9 @@ specification are not implimented in this version. <dt id="date1904-classvariable" class="">@@date1904 = <div class="docstring"> <div class="discussion"> - <p> -Indicates if the epoc date for serialization should be 1904. If false, 1900 -is used. -</p> + +<p>Indicates if the epoc date for serialization should be 1904. If false, 1900 +is used.</p> </div> @@ -178,9 +176,8 @@ is used. - <span class="summary_desc"><div class='inline'><p> -A colllection of charts associated with this workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>A colllection of charts associated with this workbook.</p> </div></span> </li> @@ -205,9 +202,8 @@ A colllection of charts associated with this workbook. - <span class="summary_desc"><div class='inline'><p> -A colllection of drawings associated with this workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>A colllection of drawings associated with this workbook.</p> </div></span> </li> @@ -232,9 +228,8 @@ A colllection of drawings associated with this workbook. - <span class="summary_desc"><div class='inline'><p> -A colllection of images associated with this workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>A colllection of images associated with this workbook.</p> </div></span> </li> @@ -259,9 +254,8 @@ A colllection of images associated with this workbook. - <span class="summary_desc"><div class='inline'><p> -A collection of worksheets associated with this workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>A collection of worksheets associated with this workbook.</p> </div></span> </li> @@ -296,9 +290,8 @@ A collection of worksheets associated with this workbook. - <span class="summary_desc"><div class='inline'><p> -retrieves the date1904 attribute. -</p> + <span class="summary_desc"><div class='inline'> +<p>retrieves the date1904 attribute.</p> </div></span> </li> @@ -320,9 +313,8 @@ retrieves the date1904 attribute. - <span class="summary_desc"><div class='inline'><p> -Sets the date1904 attribute to the provided boolean. -</p> + <span class="summary_desc"><div class='inline'> +<p>Sets the date1904 attribute to the provided boolean.</p> </div></span> </li> @@ -353,9 +345,8 @@ Sets the date1904 attribute to the provided boolean. - <span class="summary_desc"><div class='inline'><p> -Adds a worksheet to this workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>Adds a worksheet to this workbook.</p> </div></span> </li> @@ -377,9 +368,8 @@ Adds a worksheet to this workbook. - <span class="summary_desc"><div class='inline'><p> -Instance level access to the class variable 1904. -</p> + <span class="summary_desc"><div class='inline'> +<p>Instance level access to the class variable 1904.</p> </div></span> </li> @@ -401,9 +391,8 @@ Instance level access to the class variable 1904. - <span class="summary_desc"><div class='inline'><p> -see @date1904. -</p> + <span class="summary_desc"><div class='inline'> +<p>see @date1904.</p> </div></span> </li> @@ -427,9 +416,8 @@ see @date1904. - <span class="summary_desc"><div class='inline'><p> -Creates a new Workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Workbook.</p> </div></span> </li> @@ -451,9 +439,8 @@ Creates a new Workbook. - <span class="summary_desc"><div class='inline'><p> -The workbook relationships. -</p> + <span class="summary_desc"><div class='inline'> +<p>The workbook relationships.</p> </div></span> </li> @@ -475,9 +462,8 @@ The workbook relationships. - <span class="summary_desc"><div class='inline'><p> -The styles associated with this workbook. -</p> + <span class="summary_desc"><div class='inline'> +<p>The styles associated with this workbook.</p> </div></span> </li> @@ -499,9 +485,8 @@ The styles associated with this workbook. - <span class="summary_desc"><div class='inline'><p> -Serializes the workbook document. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the workbook document.</p> </div></span> </li> @@ -522,9 +507,8 @@ Serializes the workbook document. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Workbook -</p> + +<p>Creates a new Workbook</p> </div> @@ -545,9 +529,8 @@ Creates a new Workbook — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -598,9 +581,8 @@ a customizable set of options — - <div class='inline'><p> -the object that the method was called on -</p> + <div class='inline'> +<p>the object that the method was called on</p> </div> </li> @@ -661,15 +643,13 @@ the object that the method was called on <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage charts is Worksheet#add_chart -</p> + <div class='inline'> +<p>The recommended way to manage charts is Worksheet#add_chart</p> </div> </div> -<p> -A colllection of charts associated with this workbook -</p> + +<p>A colllection of charts associated with this workbook</p> </div> @@ -736,15 +716,13 @@ A colllection of charts associated with this workbook <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage drawings is Worksheet#add_chart -</p> + <div class='inline'> +<p>The recommended way to manage drawings is Worksheet#add_chart</p> </div> </div> -<p> -A colllection of drawings associated with this workbook -</p> + +<p>A colllection of drawings associated with this workbook</p> </div> @@ -811,15 +789,13 @@ A colllection of drawings associated with this workbook <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage images is Worksheet#add_image -</p> + <div class='inline'> +<p>The recommended way to manage images is Worksheet#add_image</p> </div> </div> -<p> -A colllection of images associated with this workbook -</p> + +<p>A colllection of images associated with this workbook</p> </div> @@ -886,15 +862,13 @@ A colllection of images associated with this workbook <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage worksheets is add_worksheet -</p> + <div class='inline'> +<p>The recommended way to manage worksheets is add_worksheet</p> </div> </div> -<p> -A collection of worksheets associated with this workbook. -</p> + +<p>A collection of worksheets associated with this workbook.</p> </div> @@ -962,9 +936,8 @@ A collection of worksheets associated with this workbook. </p><div class="docstring"> <div class="discussion"> - <p> -retrieves the date1904 attribute -</p> + +<p>retrieves the date1904 attribute</p> </div> @@ -1012,9 +985,8 @@ retrieves the date1904 attribute </p><div class="docstring"> <div class="discussion"> - <p> -Sets the date1904 attribute to the provided boolean -</p> + +<p>Sets the date1904 attribute to the provided boolean</p> </div> @@ -1068,9 +1040,8 @@ Sets the date1904 attribute to the provided boolean </p><div class="docstring"> <div class="discussion"> - <p> -Adds a worksheet to this workbook -</p> + +<p>Adds a worksheet to this workbook</p> </div> @@ -1091,9 +1062,8 @@ Adds a worksheet to this workbook — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -1112,9 +1082,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -The name of the worksheet. -</p> + — <div class='inline'> +<p>The name of the worksheet.</p> </div> </li> @@ -1190,9 +1159,8 @@ The name of the worksheet. </p><div class="docstring"> <div class="discussion"> - <p> -Instance level access to the class variable 1904 -</p> + +<p>Instance level access to the class variable 1904</p> </div> @@ -1240,9 +1208,8 @@ Instance level access to the class variable 1904 </p><div class="docstring"> <div class="discussion"> - <p> -see @date1904 -</p> + +<p>see @date1904</p> </div> @@ -1277,9 +1244,8 @@ see @date1904 </p><div class="docstring"> <div class="discussion"> - <p> -The workbook relationships. This is managed automatically by the workbook -</p> + +<p>The workbook relationships. This is managed automatically by the workbook</p> </div> @@ -1344,15 +1310,13 @@ The workbook relationships. This is managed automatically by the workbook <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage styles is Styles#add_style -</p> + <div class='inline'> +<p>The recommended way to manage styles is Styles#add_style</p> </div> </div> -<p> -The styles associated with this workbook -</p> + +<p>The styles associated with this workbook</p> </div> @@ -1428,9 +1392,8 @@ The styles associated with this workbook </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the workbook document -</p> + +<p>Serializes the workbook document</p> </div> @@ -1500,7 +1463,7 @@ Serializes the workbook document </div> <div id="footer"> - Generated on Tue Nov 29 13:28:45 2011 by + Generated on Wed Nov 30 08:46:37 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Worksheet.html b/doc/Axlsx/Worksheet.html index 1672e4c7..39bd418b 100644 --- a/doc/Axlsx/Worksheet.html +++ b/doc/Axlsx/Worksheet.html @@ -94,9 +94,8 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The Worksheet class represents a worksheet in the workbook. -</p> + +<p>The Worksheet class represents a worksheet in the workbook.</p> </div> @@ -128,9 +127,8 @@ The Worksheet class represents a worksheet in the workbook. - <span class="summary_desc"><div class='inline'><p> -An array of content based calculated column widths. -</p> + <span class="summary_desc"><div class='inline'> +<p>An array of content based calculated column widths.</p> </div></span> </li> @@ -155,9 +153,8 @@ An array of content based calculated column widths. - <span class="summary_desc"><div class='inline'><p> -The name of the worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>The name of the worksheet.</p> </div></span> </li> @@ -182,9 +179,8 @@ The name of the worksheet. - <span class="summary_desc"><div class='inline'><p> -The rows in this worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>The rows in this worksheet.</p> </div></span> </li> @@ -209,9 +205,8 @@ The rows in this worksheet. - <span class="summary_desc"><div class='inline'><p> -The workbook that owns this worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>The workbook that owns this worksheet.</p> </div></span> </li> @@ -246,9 +241,8 @@ The workbook that owns this worksheet. - <span class="summary_desc"><div class='inline'><p> -Adds a chart to this worksheets drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>Adds a chart to this worksheets drawing.</p> </div></span> </li> @@ -270,9 +264,8 @@ Adds a chart to this worksheets drawing. - <span class="summary_desc"><div class='inline'><p> -Adds a media item to the worksheets drawing. -</p> + <span class="summary_desc"><div class='inline'> +<p>Adds a media item to the worksheets drawing.</p> </div></span> </li> @@ -294,9 +287,8 @@ Adds a media item to the worksheets drawing. - <span class="summary_desc"><div class='inline'><p> -Adds a row to the worksheet and updates auto fit data. -</p> + <span class="summary_desc"><div class='inline'> +<p>Adds a row to the worksheet and updates auto fit data.</p> </div></span> </li> @@ -318,9 +310,8 @@ Adds a row to the worksheet and updates auto fit data. - <span class="summary_desc"><div class='inline'><p> -Determines the proper width for a column based on content. -</p> + <span class="summary_desc"><div class='inline'> +<p>Determines the proper width for a column based on content.</p> </div></span> </li> @@ -342,9 +333,8 @@ Determines the proper width for a column based on content. - <span class="summary_desc"><div class='inline'><p> -Set the style for cells in a specific column. -</p> + <span class="summary_desc"><div class='inline'> +<p>Set the style for cells in a specific column.</p> </div></span> </li> @@ -366,9 +356,8 @@ Set the style for cells in a specific column. - <span class="summary_desc"><div class='inline'><p> -returns the sheet data as columnw. -</p> + <span class="summary_desc"><div class='inline'> +<p>returns the sheet data as columnw.</p> </div></span> </li> @@ -390,9 +379,8 @@ returns the sheet data as columnw. - <span class="summary_desc"><div class='inline'><p> -The drawing associated with this worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>The drawing associated with this worksheet.</p> </div></span> </li> @@ -414,9 +402,8 @@ The drawing associated with this worksheet. - <span class="summary_desc"><div class='inline'><p> -The index of this worksheet in the owning Workbook’s worksheets list. -</p> + <span class="summary_desc"><div class='inline'> +<p>The index of this worksheet in the owning Workbook’s worksheets list.</p> </div></span> </li> @@ -440,9 +427,8 @@ The index of this worksheet in the owning Workbook’s worksheets list. - <span class="summary_desc"><div class='inline'><p> -Creates a new worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new worksheet.</p> </div></span> </li> @@ -464,9 +450,8 @@ Creates a new worksheet. - <span class="summary_desc"><div class='inline'><p> -The part name of this worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>The part name of this worksheet.</p> </div></span> </li> @@ -488,9 +473,8 @@ The part name of this worksheet. - <span class="summary_desc"><div class='inline'><p> -The worksheet relationships. -</p> + <span class="summary_desc"><div class='inline'> +<p>The worksheet relationships.</p> </div></span> </li> @@ -512,9 +496,8 @@ The worksheet relationships. - <span class="summary_desc"><div class='inline'><p> -The relationship part name of this worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>The relationship part name of this worksheet.</p> </div></span> </li> @@ -536,9 +519,8 @@ The relationship part name of this worksheet. - <span class="summary_desc"><div class='inline'><p> -The relationship Id of thiw worksheet. -</p> + <span class="summary_desc"><div class='inline'> +<p>The relationship Id of thiw worksheet.</p> </div></span> </li> @@ -560,9 +542,8 @@ The relationship Id of thiw worksheet. - <span class="summary_desc"><div class='inline'><p> -Set the style for cells in a specific row. -</p> + <span class="summary_desc"><div class='inline'> +<p>Set the style for cells in a specific row.</p> </div></span> </li> @@ -584,9 +565,8 @@ Set the style for cells in a specific row. - <span class="summary_desc"><div class='inline'><p> -Serializes the worksheet document. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the worksheet document.</p> </div></span> </li> @@ -608,9 +588,8 @@ Serializes the worksheet document. - <span class="summary_desc"><div class='inline'><p> -Updates auto fit data. -</p> + <span class="summary_desc"><div class='inline'> +<p>Updates auto fit data.</p> </div></span> </li> @@ -634,15 +613,13 @@ Updates auto fit data. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -the recommended way to manage worksheets is Workbook#add_worksheet -</p> + <div class='inline'> +<p>the recommended way to manage worksheets is Workbook#add_worksheet</p> </div> </div> -<p> -Creates a new worksheet. -</p> + +<p>Creates a new worksheet.</p> </div> @@ -663,9 +640,8 @@ Creates a new worksheet. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -686,9 +662,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -The name of this sheet. -</p> + — <div class='inline'> +<p>The name of this sheet.</p> </div> </li> @@ -759,16 +734,14 @@ The name of this sheet. <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -a single auto fit data item is a hash with :longest => [String] and -:sz=> [Integer] members. -</p> + <div class='inline'> +<p>a single auto fit data item is a hash with :longest => [String] and +:sz=> [Integer] members.</p> </div> </div> -<p> -An array of content based calculated column widths. -</p> + +<p>An array of content based calculated column widths.</p> </div> @@ -786,9 +759,8 @@ An array of content based calculated column widths. — - <div class='inline'><p> -of Hash -</p> + <div class='inline'> +<p>of Hash</p> </div> </li> @@ -829,9 +801,8 @@ of Hash </p><div class="docstring"> <div class="discussion"> - <p> -The name of the worksheet -</p> + +<p>The name of the worksheet</p> </div> @@ -889,15 +860,13 @@ The name of the worksheet <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -The recommended way to manage rows is Worksheet#add_row -</p> + <div class='inline'> +<p>The recommended way to manage rows is Worksheet#add_row</p> </div> </div> -<p> -The rows in this worksheet -</p> + +<p>The rows in this worksheet</p> </div> @@ -959,9 +928,8 @@ The rows in this worksheet </p><div class="docstring"> <div class="discussion"> - <p> -The workbook that owns this worksheet -</p> + +<p>The workbook that owns this worksheet</p> </div> @@ -1023,18 +991,16 @@ The workbook that owns this worksheet <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -each chart type also specifies additional options -</p> + <div class='inline'> +<p>each chart type also specifies additional options</p> </div> </div> -<p> -Adds a chart to this worksheets drawing. This is the recommended way to + +<p>Adds a chart to this worksheets drawing. This is the recommended way to create charts for your worksheet. This method wraps the complexity of dealing with ooxml drawing, anchors, markers graphic frames chart objects -and all the other dirty details. -</p> +and all the other dirty details.</p> </div> @@ -1066,9 +1032,8 @@ and all the other dirty details. — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -1195,9 +1160,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -Adds a media item to the worksheets drawing -</p> + +<p>Adds a media item to the worksheets drawing</p> </div> @@ -1229,9 +1193,8 @@ Adds a media item to the worksheets drawing — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -1250,9 +1213,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -unknown -</p> + — <div class='inline'> +<p>unknown</p> </div> </li> @@ -1308,9 +1270,8 @@ unknown </p><div class="docstring"> <div class="discussion"> - <p> -Adds a row to the worksheet and updates auto fit data -</p> + +<p>Adds a row to the worksheet and updates auto fit data</p> </div> @@ -1331,9 +1292,8 @@ Adds a row to the worksheet and updates auto fit data — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -1445,20 +1405,18 @@ a customizable set of options <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -From ECMA docs -</p> -<pre class="code"> - <span class='Column constant id'>Column</span> <span class='width identifier id'>width</span> <span class='measured identifier id'>measured</span> <span class='as identifier id'>as</span> <span class='the identifier id'>the</span> <span class='number identifier id'>number</span> <span class='of identifier id'>of</span> <span class='characters identifier id'>characters</span> <span class='of identifier id'>of</span> <span class='the identifier id'>the</span> <span class='maximum identifier id'>maximum</span> <span class='digit identifier id'>digit</span> <span class='width identifier id'>width</span> <span class='of identifier id'>of</span> <span class='the identifier id'>the</span> <span class='numbers identifier id'>numbers</span> <span class='integer val'>0</span> <span class='dot2 op'>..</span> <span class='integer val'>9</span> <span class='as identifier id'>as</span> - <span class='rendered identifier id'>rendered</span> <span class='in in kw'>in</span> <span class='the identifier id'>the</span> <span class='normal identifier id'>normal</span> <span class='style identifier id'>style</span><span class='string val'>'s font. There are 4 pixels of margin padding (two on each side), plus 1 pixel padding for the gridlines. - width = Truncate([!{Number of Characters} * !{Maximum Digit Width} + !{5 pixel padding}]/{Maximum Digit Width}*256)/256 + <div class='inline'> +<p>From ECMA docs</p> + +<pre class="code"><span class='Column constant id'>Column</span> <span class='width identifier id'>width</span> <span class='measured identifier id'>measured</span> <span class='as identifier id'>as</span> <span class='the identifier id'>the</span> <span class='number identifier id'>number</span> <span class='of identifier id'>of</span> <span class='characters identifier id'>characters</span> <span class='of identifier id'>of</span> <span class='the identifier id'>the</span> <span class='maximum identifier id'>maximum</span> <span class='digit identifier id'>digit</span> <span class='width identifier id'>width</span> <span class='of identifier id'>of</span> <span class='the identifier id'>the</span> <span class='numbers identifier id'>numbers</span> <span class='integer val'>0</span> <span class='dot2 op'>..</span> <span class='integer val'>9</span> <span class='as identifier id'>as</span> +<span class='rendered identifier id'>rendered</span> <span class='in in kw'>in</span> <span class='the identifier id'>the</span> <span class='normal identifier id'>normal</span> <span class='style identifier id'>style</span><span class='string val'>'s font. There are 4 pixels of margin padding (two on each side), plus 1 pixel padding for the gridlines. +width = Truncate([!{Number of Characters} * !{Maximum Digit Width} + !{5 pixel padding}]/{Maximum Digit Width}*256)/256 </span></pre> </div> </div> -<p> -Determines the proper width for a column based on content. -</p> + +<p>Determines the proper width for a column based on content.</p> </div> @@ -1477,9 +1435,8 @@ Determines the proper width for a column based on content. — - <div class='inline'><p> -hash of auto_fit_data -</p> + <div class='inline'> +<p>hash of auto_fit_data</p> </div> </li> @@ -1550,16 +1507,14 @@ hash of auto_fit_data <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -You can also specify the style for specific columns in the call to add_row -by using an array for the :styles option -</p> + <div class='inline'> +<p>You can also specify the style for specific columns in the call to add_row +by using an array for the :styles option</p> </div> </div> -<p> -Set the style for cells in a specific column -</p> + +<p>Set the style for cells in a specific column</p> </div> @@ -1578,9 +1533,8 @@ Set the style for cells in a specific column — - <div class='inline'><p> -the index of the column -</p> + <div class='inline'> +<p>the index of the column</p> </div> </li> @@ -1595,9 +1549,8 @@ the index of the column — - <div class='inline'><p> -cellXfs index -</p> + <div class='inline'> +<p>cellXfs index</p> </div> </li> @@ -1614,9 +1567,8 @@ cellXfs index — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -1639,9 +1591,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -only cells after this column will be updated. -</p> + — <div class='inline'> +<p>only cells after this column will be updated.</p> </div> </li> @@ -1705,9 +1656,8 @@ only cells after this column will be updated. </p><div class="docstring"> <div class="discussion"> - <p> -returns the sheet data as columnw -</p> + +<p>returns the sheet data as columnw</p> </div> @@ -1749,15 +1699,13 @@ returns the sheet data as columnw <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -the recommended way to work with drawings and charts is Worksheet#add_chart -</p> + <div class='inline'> +<p>the recommended way to work with drawings and charts is Worksheet#add_chart</p> </div> </div> -<p> -The drawing associated with this worksheet. -</p> + +<p>The drawing associated with this worksheet.</p> </div> @@ -1816,9 +1764,8 @@ The drawing associated with this worksheet. </p><div class="docstring"> <div class="discussion"> - <p> -The index of this worksheet in the owning Workbook’s worksheets list. -</p> + +<p>The index of this worksheet in the owning Workbook’s worksheets list.</p> </div> @@ -1870,9 +1817,8 @@ The index of this worksheet in the owning Workbook’s worksheets list. </p><div class="docstring"> <div class="discussion"> - <p> -The part name of this worksheet -</p> + +<p>The part name of this worksheet</p> </div> @@ -1924,9 +1870,8 @@ The part name of this worksheet </p><div class="docstring"> <div class="discussion"> - <p> -The worksheet relationships. This is managed automatically by the worksheet -</p> + +<p>The worksheet relationships. This is managed automatically by the worksheet</p> </div> @@ -1982,9 +1927,8 @@ The worksheet relationships. This is managed automatically by the worksheet </p><div class="docstring"> <div class="discussion"> - <p> -The relationship part name of this worksheet -</p> + +<p>The relationship part name of this worksheet</p> </div> @@ -2036,9 +1980,8 @@ The relationship part name of this worksheet </p><div class="docstring"> <div class="discussion"> - <p> -The relationship Id of thiw worksheet -</p> + +<p>The relationship Id of thiw worksheet</p> </div> @@ -2093,15 +2036,13 @@ The relationship Id of thiw worksheet <div class="note notetag"> <strong>Note:</strong> - <div class='inline'><p> -You can also specify the style in the add_row call -</p> + <div class='inline'> +<p>You can also specify the style in the add_row call</p> </div> </div> -<p> -Set the style for cells in a specific row -</p> + +<p>Set the style for cells in a specific row</p> </div> @@ -2120,9 +2061,8 @@ Set the style for cells in a specific row — - <div class='inline'><p> -or range of indexes in the table -</p> + <div class='inline'> +<p>or range of indexes in the table</p> </div> </li> @@ -2137,9 +2077,8 @@ or range of indexes in the table — - <div class='inline'><p> -cellXfs index -</p> + <div class='inline'> +<p>cellXfs index</p> </div> </li> @@ -2156,9 +2095,8 @@ cellXfs index — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -2181,9 +2119,8 @@ a customizable set of options <span class="default"> </span> - — <div class='inline'><p> -only cells after this column will be updated. -</p> + — <div class='inline'> +<p>only cells after this column will be updated.</p> </div> </li> @@ -2243,9 +2180,8 @@ only cells after this column will be updated. </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the worksheet document -</p> + +<p>Serializes the worksheet document</p> </div> @@ -2333,11 +2269,10 @@ Serializes the worksheet document </p><div class="docstring"> <div class="discussion"> - <p> -Updates auto fit data. Autofit data attempts to determine the cell in a + +<p>Updates auto fit data. Autofit data attempts to determine the cell in a column that has the greatest width by comparing the length of the text -multiplied by the size of the font. -</p> +multiplied by the size of the font.</p> </div> @@ -2356,9 +2291,8 @@ multiplied by the size of the font. — - <div class='inline'><p> -an array of cells -</p> + <div class='inline'> +<p>an array of cells</p> </div> </li> @@ -2376,9 +2310,8 @@ an array of cells — - <div class='inline'><p> -of Cell objects -</p> + <div class='inline'> +<p>of Cell objects</p> </div> </li> @@ -2444,7 +2377,7 @@ of Cell objects </div> <div id="footer"> - Generated on Tue Nov 29 13:28:50 2011 by + Generated on Wed Nov 30 08:46:24 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/Axlsx/Xf.html b/doc/Axlsx/Xf.html index 6f54c8c0..4c839a3e 100644 --- a/doc/Axlsx/Xf.html +++ b/doc/Axlsx/Xf.html @@ -94,10 +94,9 @@ <h2>Overview</h2><div class="docstring"> <div class="discussion"> - <p> -The Xf class defines a formatting record for use in Styles. The recommended -way to manage styles for your workbook is with Styles#add_style -</p> + +<p>The Xf class defines a formatting record for use in Styles. The recommended +way to manage styles for your workbook is with Styles#add_style</p> </div> @@ -136,9 +135,8 @@ way to manage styles for your workbook is with Styles#add_style - <span class="summary_desc"><div class='inline'><p> -The cell alignment for this style. -</p> + <span class="summary_desc"><div class='inline'> +<p>The cell alignment for this style.</p> </div></span> </li> @@ -163,9 +161,8 @@ The cell alignment for this style. - <span class="summary_desc"><div class='inline'><p> -Indicates if the alignment options should be applied. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates if the alignment options should be applied.</p> </div></span> </li> @@ -190,9 +187,8 @@ Indicates if the alignment options should be applied. - <span class="summary_desc"><div class='inline'><p> -indicates if the borderId should be applied. -</p> + <span class="summary_desc"><div class='inline'> +<p>indicates if the borderId should be applied.</p> </div></span> </li> @@ -217,9 +213,8 @@ indicates if the borderId should be applied. - <span class="summary_desc"><div class='inline'><p> -indicates if the fillId should be applied. -</p> + <span class="summary_desc"><div class='inline'> +<p>indicates if the fillId should be applied.</p> </div></span> </li> @@ -244,9 +239,8 @@ indicates if the fillId should be applied. - <span class="summary_desc"><div class='inline'><p> -indicates if the fontId should be applied. -</p> + <span class="summary_desc"><div class='inline'> +<p>indicates if the fontId should be applied.</p> </div></span> </li> @@ -271,9 +265,8 @@ indicates if the fontId should be applied. - <span class="summary_desc"><div class='inline'><p> -indicates if the numFmtId should be applied. -</p> + <span class="summary_desc"><div class='inline'> +<p>indicates if the numFmtId should be applied.</p> </div></span> </li> @@ -298,9 +291,8 @@ indicates if the numFmtId should be applied. - <span class="summary_desc"><div class='inline'><p> -Indicates if the protection options should be applied. -</p> + <span class="summary_desc"><div class='inline'> +<p>Indicates if the protection options should be applied.</p> </div></span> </li> @@ -325,9 +317,8 @@ Indicates if the protection options should be applied. - <span class="summary_desc"><div class='inline'><p> -index (0 based) of the border to be used in this style. -</p> + <span class="summary_desc"><div class='inline'> +<p>index (0 based) of the border to be used in this style.</p> </div></span> </li> @@ -352,9 +343,8 @@ index (0 based) of the border to be used in this style. - <span class="summary_desc"><div class='inline'><p> -index (0 based) of the fill to be used in this style. -</p> + <span class="summary_desc"><div class='inline'> +<p>index (0 based) of the fill to be used in this style.</p> </div></span> </li> @@ -379,9 +369,8 @@ index (0 based) of the fill to be used in this style. - <span class="summary_desc"><div class='inline'><p> -index (0 based) of the font to be used in this style. -</p> + <span class="summary_desc"><div class='inline'> +<p>index (0 based) of the font to be used in this style.</p> </div></span> </li> @@ -406,9 +395,8 @@ index (0 based) of the font to be used in this style. - <span class="summary_desc"><div class='inline'><p> -id of the numFmt to apply to this style. -</p> + <span class="summary_desc"><div class='inline'> +<p>id of the numFmt to apply to this style.</p> </div></span> </li> @@ -433,9 +421,8 @@ id of the numFmt to apply to this style. - <span class="summary_desc"><div class='inline'><p> -indicates if the cell has a pivot table drop down button. -</p> + <span class="summary_desc"><div class='inline'> +<p>indicates if the cell has a pivot table drop down button.</p> </div></span> </li> @@ -460,9 +447,8 @@ indicates if the cell has a pivot table drop down button. - <span class="summary_desc"><div class='inline'><p> -The cell protection for this style. -</p> + <span class="summary_desc"><div class='inline'> +<p>The cell protection for this style.</p> </div></span> </li> @@ -487,9 +473,8 @@ The cell protection for this style. - <span class="summary_desc"><div class='inline'><p> -indecates if text should be prefixed by a single quote in the cell. -</p> + <span class="summary_desc"><div class='inline'> +<p>indecates if text should be prefixed by a single quote in the cell.</p> </div></span> </li> @@ -514,9 +499,8 @@ indecates if text should be prefixed by a single quote in the cell. - <span class="summary_desc"><div class='inline'><p> -index (0 based) of cellStylesXfs item to be used in this style. -</p> + <span class="summary_desc"><div class='inline'> +<p>index (0 based) of cellStylesXfs item to be used in this style.</p> </div></span> </li> @@ -553,9 +537,8 @@ index (0 based) of cellStylesXfs item to be used in this style. - <span class="summary_desc"><div class='inline'><p> -Creates a new Xf object. -</p> + <span class="summary_desc"><div class='inline'> +<p>Creates a new Xf object.</p> </div></span> </li> @@ -577,9 +560,8 @@ Creates a new Xf object. - <span class="summary_desc"><div class='inline'><p> -Serializes the xf elemen. -</p> + <span class="summary_desc"><div class='inline'> +<p>Serializes the xf elemen.</p> </div></span> </li> @@ -600,9 +582,8 @@ Serializes the xf elemen. </p><div class="docstring"> <div class="discussion"> - <p> -Creates a new Xf object -</p> + +<p>Creates a new Xf object</p> </div> @@ -623,9 +604,8 @@ Creates a new Xf object — - <div class='inline'><p> -a customizable set of options -</p> + <div class='inline'> +<p>a customizable set of options</p> </div> </li> @@ -820,9 +800,8 @@ a customizable set of options </p><div class="docstring"> <div class="discussion"> - <p> -The cell alignment for this style -</p> + +<p>The cell alignment for this style</p> </div> @@ -884,9 +863,8 @@ The cell alignment for this style </p><div class="docstring"> <div class="discussion"> - <p> -Indicates if the alignment options should be applied -</p> + +<p>Indicates if the alignment options should be applied</p> </div> @@ -941,9 +919,8 @@ Indicates if the alignment options should be applied </p><div class="docstring"> <div class="discussion"> - <p> -indicates if the borderId should be applied -</p> + +<p>indicates if the borderId should be applied</p> </div> @@ -998,9 +975,8 @@ indicates if the borderId should be applied </p><div class="docstring"> <div class="discussion"> - <p> -indicates if the fillId should be applied -</p> + +<p>indicates if the fillId should be applied</p> </div> @@ -1055,9 +1031,8 @@ indicates if the fillId should be applied </p><div class="docstring"> <div class="discussion"> - <p> -indicates if the fontId should be applied -</p> + +<p>indicates if the fontId should be applied</p> </div> @@ -1112,9 +1087,8 @@ indicates if the fontId should be applied </p><div class="docstring"> <div class="discussion"> - <p> -indicates if the numFmtId should be applied -</p> + +<p>indicates if the numFmtId should be applied</p> </div> @@ -1169,9 +1143,8 @@ indicates if the numFmtId should be applied </p><div class="docstring"> <div class="discussion"> - <p> -Indicates if the protection options should be applied -</p> + +<p>Indicates if the protection options should be applied</p> </div> @@ -1226,9 +1199,8 @@ Indicates if the protection options should be applied </p><div class="docstring"> <div class="discussion"> - <p> -index (0 based) of the border to be used in this style -</p> + +<p>index (0 based) of the border to be used in this style</p> </div> @@ -1283,9 +1255,8 @@ index (0 based) of the border to be used in this style </p><div class="docstring"> <div class="discussion"> - <p> -index (0 based) of the fill to be used in this style -</p> + +<p>index (0 based) of the fill to be used in this style</p> </div> @@ -1340,9 +1311,8 @@ index (0 based) of the fill to be used in this style </p><div class="docstring"> <div class="discussion"> - <p> -index (0 based) of the font to be used in this style -</p> + +<p>index (0 based) of the font to be used in this style</p> </div> @@ -1397,9 +1367,8 @@ index (0 based) of the font to be used in this style </p><div class="docstring"> <div class="discussion"> - <p> -id of the numFmt to apply to this style -</p> + +<p>id of the numFmt to apply to this style</p> </div> @@ -1454,9 +1423,8 @@ id of the numFmt to apply to this style </p><div class="docstring"> <div class="discussion"> - <p> -indicates if the cell has a pivot table drop down button -</p> + +<p>indicates if the cell has a pivot table drop down button</p> </div> @@ -1511,9 +1479,8 @@ indicates if the cell has a pivot table drop down button </p><div class="docstring"> <div class="discussion"> - <p> -The cell protection for this style -</p> + +<p>The cell protection for this style</p> </div> @@ -1575,9 +1542,8 @@ The cell protection for this style </p><div class="docstring"> <div class="discussion"> - <p> -indecates if text should be prefixed by a single quote in the cell -</p> + +<p>indecates if text should be prefixed by a single quote in the cell</p> </div> @@ -1632,10 +1598,9 @@ indecates if text should be prefixed by a single quote in the cell </p><div class="docstring"> <div class="discussion"> - <p> -index (0 based) of cellStylesXfs item to be used in this style. Only -applies to cellXfs items -</p> + +<p>index (0 based) of cellStylesXfs item to be used in this style. Only +applies to cellXfs items</p> </div> @@ -1694,9 +1659,8 @@ applies to cellXfs items </p><div class="docstring"> <div class="discussion"> - <p> -Serializes the xf elemen -</p> + +<p>Serializes the xf elemen</p> </div> @@ -1715,9 +1679,8 @@ Serializes the xf elemen — - <div class='inline'><p> -The document builder instance this objects xml will be added to. -</p> + <div class='inline'> +<p>The document builder instance this objects xml will be added to.</p> </div> </li> @@ -1771,7 +1734,7 @@ The document builder instance this objects xml will be added to. </div> <div id="footer"> - Generated on Tue Nov 29 13:28:46 2011 by + Generated on Wed Nov 30 08:46:37 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/_index.html b/doc/_index.html index 82f20230..91b046d0 100644 --- a/doc/_index.html +++ b/doc/_index.html @@ -626,7 +626,7 @@ </div> <div id="footer"> - Generated on Tue Nov 29 13:28:40 2011 by + Generated on Wed Nov 30 08:46:20 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/css/style.css b/doc/css/style.css index 60829f7e..0b6fa69b 100644 --- a/doc/css/style.css +++ b/doc/css/style.css @@ -294,7 +294,7 @@ li.r2 { background: #fafafa; } #filecontents pre.code, .docstring pre.code { display: block; } .source_code .lines { padding-right: 12px; color: #555; text-align: right; } #filecontents pre.code, .docstring pre.code, -.tags .example { padding: 5px 12px; margin-top: 4px; border: 1px solid #eef; background: #f5f5ff; } +.tags pre.example { padding: 5px 12px; margin-top: 4px; border: 1px solid #eef; background: #f5f5ff; } pre.code { color: #000; } pre.code .info.file { color: #555; } pre.code .val { color: #036A07; } diff --git a/doc/file.LICENSE.html b/doc/file.LICENSE.html index 64ff7901..fac44ea9 100644 --- a/doc/file.LICENSE.html +++ b/doc/file.LICENSE.html @@ -54,35 +54,31 @@ <iframe id="search_frame"></iframe> - <div id="content"><div id='filecontents'><p> -Copyright © 2011 Randy Morgan -</p> -<p> -Permission is hereby granted, free of charge, to any person obtaining a + <div id="content"><div id='filecontents'> +<p>Copyright © 2011 Randy Morgan</p> + +<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to the -following conditions: -</p> -<p> -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. -</p> -<p> -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. -</p> +“Software”), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions:</p> + +<p>The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software.</p> + +<p>THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE.</p> </div></div> <div id="footer"> - Generated on Tue Nov 29 13:28:41 2011 by + Generated on Wed Nov 30 08:46:20 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/file.README.html b/doc/file.README.html index 6138a068..0c788706 100644 --- a/doc/file.README.html +++ b/doc/file.README.html @@ -56,14 +56,17 @@ <div id="content"><div id='filecontents'><h1>Axlsx: Office Open XML Spreadsheet Generation</h1> +<p><a href="http://travis-ci.org/randym/axlsx/"><img src="https://secure.travis-ci.org/randym/axlsx.png" alt="Build Status" /></a></p> + <p><strong>IRC</strong>: <a href="irc://irc.freenode.net/axlsx">irc.freenode.net / #axlsx</a> <br/> <strong>Git</strong>: <a href="http://github.com/randym/axlsx">http://github.com/randym/axlsx</a> <br/> <strong>Author</strong>: Randy Morgan <br/> <strong>Copyright</strong>: 2011 <br/> <strong>License</strong>: MIT License <br/> <strong>Latest Version</strong>: 1.0.10 <br/> -<strong>Ruby Version</strong>: 1.8.7 - 1.9.3 <br/> -<strong>Release Date</strong>: November 29th 2011</p> +<strong>Ruby Version</strong>: 1.8.7, 1.9.3</p> + +<p><strong>Release Date</strong>: November 30th 2011</p> <h2>Synopsis</h2> @@ -271,14 +274,17 @@ With Axlsx you can create worksheets with charts, images, automated column width <h2>Changelog</h2> <ul> -<li><p><strong>October.29.11</strong>: 1.0.10 release</p> +<li><p><strong>October.30.11</strong>: 1.0.10 release</p> <ul> <li>Updating gemspec to lower gem version requirements.</li> <li>Added row.style assignation for updating the cell style for an entire row</li> <li>Added col_style method to worksheet upate a the style for a column of cells</li> <li>Added cols for an easy reference to columns in a worksheet.</li> -<li>prep for release of acts_as_xlsx gem</li> +<li>prep for pre release of acts_as_xlsx gem</li> +<li>added in travis.ci configuration and build status</li> +<li>fixed out of range bug in time calculations for 32bit time.</li> +<li>added i18n for active support</li> </ul> </li> <li><p><strong>October.26.11</strong>: 1.0.9 release</p> @@ -300,7 +306,7 @@ licensed under the MIT license. Please see the <a href="file.LICENSE.html" title </div></div> <div id="footer"> - Generated on Tue Nov 29 13:28:41 2011 by + Generated on Wed Nov 30 08:46:20 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/index.html b/doc/index.html index 6138a068..0c788706 100644 --- a/doc/index.html +++ b/doc/index.html @@ -56,14 +56,17 @@ <div id="content"><div id='filecontents'><h1>Axlsx: Office Open XML Spreadsheet Generation</h1> +<p><a href="http://travis-ci.org/randym/axlsx/"><img src="https://secure.travis-ci.org/randym/axlsx.png" alt="Build Status" /></a></p> + <p><strong>IRC</strong>: <a href="irc://irc.freenode.net/axlsx">irc.freenode.net / #axlsx</a> <br/> <strong>Git</strong>: <a href="http://github.com/randym/axlsx">http://github.com/randym/axlsx</a> <br/> <strong>Author</strong>: Randy Morgan <br/> <strong>Copyright</strong>: 2011 <br/> <strong>License</strong>: MIT License <br/> <strong>Latest Version</strong>: 1.0.10 <br/> -<strong>Ruby Version</strong>: 1.8.7 - 1.9.3 <br/> -<strong>Release Date</strong>: November 29th 2011</p> +<strong>Ruby Version</strong>: 1.8.7, 1.9.3</p> + +<p><strong>Release Date</strong>: November 30th 2011</p> <h2>Synopsis</h2> @@ -271,14 +274,17 @@ With Axlsx you can create worksheets with charts, images, automated column width <h2>Changelog</h2> <ul> -<li><p><strong>October.29.11</strong>: 1.0.10 release</p> +<li><p><strong>October.30.11</strong>: 1.0.10 release</p> <ul> <li>Updating gemspec to lower gem version requirements.</li> <li>Added row.style assignation for updating the cell style for an entire row</li> <li>Added col_style method to worksheet upate a the style for a column of cells</li> <li>Added cols for an easy reference to columns in a worksheet.</li> -<li>prep for release of acts_as_xlsx gem</li> +<li>prep for pre release of acts_as_xlsx gem</li> +<li>added in travis.ci configuration and build status</li> +<li>fixed out of range bug in time calculations for 32bit time.</li> +<li>added i18n for active support</li> </ul> </li> <li><p><strong>October.26.11</strong>: 1.0.9 release</p> @@ -300,7 +306,7 @@ licensed under the MIT license. Please see the <a href="file.LICENSE.html" title </div></div> <div id="footer"> - Generated on Tue Nov 29 13:28:41 2011 by + Generated on Wed Nov 30 08:46:20 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/doc/js/app.js b/doc/js/app.js index 97095cbf..1b4e04b5 100644 --- a/doc/js/app.js +++ b/doc/js/app.js @@ -2,11 +2,11 @@ function createSourceLinks() { $('.method_details_list .source_code'). before("<span class='showSource'>[<a href='#' class='toggleSource'>View source</a>]</span>"); $('.toggleSource').toggle(function() { - $(this).parent().next().slideDown(100); + $(this).parent().nextAll('.source_code').slideDown(100); $(this).text("Hide source"); }, function() { - $(this).parent().next().slideUp(100); + $(this).parent().nextAll('.source_code').slideUp(100); $(this).text("View source"); }); } @@ -109,10 +109,10 @@ function summaryToggle() { $('.summary_toggle').click(function() { localStorage.summaryCollapsed = $(this).text(); $(this).text($(this).text() == "collapse" ? "expand" : "collapse"); - var next = $(this).parent().parent().next(); + var next = $(this).parent().parent().nextAll('ul.summary').first(); if (next.hasClass('compact')) { next.toggle(); - next.next().toggle(); + next.nextAll('ul.summary').first().toggle(); } else if (next.hasClass('summary')) { var list = $('<ul class="summary compact" />'); diff --git a/doc/method_list.html b/doc/method_list.html index 86c315ed..b29c5b40 100644 --- a/doc/method_list.html +++ b/doc/method_list.html @@ -81,17 +81,17 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Override.html#ContentType-instance_method" title="Axlsx::Override#ContentType (method)">#ContentType</a></span> + <span class='object_link'><a href="Axlsx/Default.html#ContentType-instance_method" title="Axlsx::Default#ContentType (method)">#ContentType</a></span> - <small>Axlsx::Override</small> + <small>Axlsx::Default</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Default.html#ContentType-instance_method" title="Axlsx::Default#ContentType (method)">#ContentType</a></span> + <span class='object_link'><a href="Axlsx/Override.html#ContentType-instance_method" title="Axlsx::Override#ContentType (method)">#ContentType</a></span> - <small>Axlsx::Default</small> + <small>Axlsx::Override</small> </li> @@ -281,9 +281,9 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Worksheet.html#add_chart-instance_method" title="Axlsx::Worksheet#add_chart (method)">#add_chart</a></span> + <span class='object_link'><a href="Axlsx/Drawing.html#add_chart-instance_method" title="Axlsx::Drawing#add_chart (method)">#add_chart</a></span> - <small>Axlsx::Worksheet</small> + <small>Axlsx::Drawing</small> </li> @@ -297,25 +297,25 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Drawing.html#add_chart-instance_method" title="Axlsx::Drawing#add_chart (method)">#add_chart</a></span> + <span class='object_link'><a href="Axlsx/Worksheet.html#add_chart-instance_method" title="Axlsx::Worksheet#add_chart (method)">#add_chart</a></span> - <small>Axlsx::Drawing</small> + <small>Axlsx::Worksheet</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Worksheet.html#add_image-instance_method" title="Axlsx::Worksheet#add_image (method)">#add_image</a></span> + <span class='object_link'><a href="Axlsx/Drawing.html#add_image-instance_method" title="Axlsx::Drawing#add_image (method)">#add_image</a></span> - <small>Axlsx::Worksheet</small> + <small>Axlsx::Drawing</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Drawing.html#add_image-instance_method" title="Axlsx::Drawing#add_image (method)">#add_image</a></span> + <span class='object_link'><a href="Axlsx/Worksheet.html#add_image-instance_method" title="Axlsx::Worksheet#add_image (method)">#add_image</a></span> - <small>Axlsx::Drawing</small> + <small>Axlsx::Worksheet</small> </li> @@ -433,17 +433,17 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/CatAxis.html#auto-instance_method" title="Axlsx::CatAxis#auto (method)">#auto</a></span> + <span class='object_link'><a href="Axlsx/Color.html#auto-instance_method" title="Axlsx::Color#auto (method)">#auto</a></span> - <small>Axlsx::CatAxis</small> + <small>Axlsx::Color</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Color.html#auto-instance_method" title="Axlsx::Color#auto (method)">#auto</a></span> + <span class='object_link'><a href="Axlsx/CatAxis.html#auto-instance_method" title="Axlsx::CatAxis#auto (method)">#auto</a></span> - <small>Axlsx::Color</small> + <small>Axlsx::CatAxis</small> </li> @@ -625,33 +625,33 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Series.html#chart-instance_method" title="Axlsx::Series#chart (method)">#chart</a></span> + <span class='object_link'><a href="Axlsx/GraphicFrame.html#chart-instance_method" title="Axlsx::GraphicFrame#chart (method)">#chart</a></span> - <small>Axlsx::Series</small> + <small>Axlsx::GraphicFrame</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/GraphicFrame.html#chart-instance_method" title="Axlsx::GraphicFrame#chart (method)">#chart</a></span> + <span class='object_link'><a href="Axlsx/Series.html#chart-instance_method" title="Axlsx::Series#chart (method)">#chart</a></span> - <small>Axlsx::GraphicFrame</small> + <small>Axlsx::Series</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Workbook.html#charts-instance_method" title="Axlsx::Workbook#charts (method)">#charts</a></span> + <span class='object_link'><a href="Axlsx/Drawing.html#charts-instance_method" title="Axlsx::Drawing#charts (method)">#charts</a></span> - <small>Axlsx::Workbook</small> + <small>Axlsx::Drawing</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Drawing.html#charts-instance_method" title="Axlsx::Drawing#charts (method)">#charts</a></span> + <span class='object_link'><a href="Axlsx/Workbook.html#charts-instance_method" title="Axlsx::Workbook#charts (method)">#charts</a></span> - <small>Axlsx::Drawing</small> + <small>Axlsx::Workbook</small> </li> @@ -785,17 +785,17 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/BarSeries.html#data-instance_method" title="Axlsx::BarSeries#data (method)">#data</a></span> + <span class='object_link'><a href="Axlsx/PieSeries.html#data-instance_method" title="Axlsx::PieSeries#data (method)">#data</a></span> - <small>Axlsx::BarSeries</small> + <small>Axlsx::PieSeries</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/PieSeries.html#data-instance_method" title="Axlsx::PieSeries#data (method)">#data</a></span> + <span class='object_link'><a href="Axlsx/BarSeries.html#data-instance_method" title="Axlsx::BarSeries#data (method)">#data</a></span> - <small>Axlsx::PieSeries</small> + <small>Axlsx::BarSeries</small> </li> @@ -889,17 +889,17 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/OneCellAnchor.html#drawing-instance_method" title="Axlsx::OneCellAnchor#drawing (method)">#drawing</a></span> + <span class='object_link'><a href="Axlsx/Worksheet.html#drawing-instance_method" title="Axlsx::Worksheet#drawing (method)">#drawing</a></span> - <small>Axlsx::OneCellAnchor</small> + <small>Axlsx::Worksheet</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Worksheet.html#drawing-instance_method" title="Axlsx::Worksheet#drawing (method)">#drawing</a></span> + <span class='object_link'><a href="Axlsx/OneCellAnchor.html#drawing-instance_method" title="Axlsx::OneCellAnchor#drawing (method)">#drawing</a></span> - <small>Axlsx::Worksheet</small> + <small>Axlsx::OneCellAnchor</small> </li> @@ -1049,17 +1049,17 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Chart.html#from-instance_method" title="Axlsx::Chart#from (method)">#from</a></span> + <span class='object_link'><a href="Axlsx/OneCellAnchor.html#from-instance_method" title="Axlsx::OneCellAnchor#from (method)">#from</a></span> - <small>Axlsx::Chart</small> + <small>Axlsx::OneCellAnchor</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/OneCellAnchor.html#from-instance_method" title="Axlsx::OneCellAnchor#from (method)">#from</a></span> + <span class='object_link'><a href="Axlsx/Chart.html#from-instance_method" title="Axlsx::Chart#from (method)">#from</a></span> - <small>Axlsx::OneCellAnchor</small> + <small>Axlsx::Chart</small> </li> @@ -1073,17 +1073,17 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Line3DChart.html#gapDepth-instance_method" title="Axlsx::Line3DChart#gapDepth (method)">#gapDepth</a></span> + <span class='object_link'><a href="Axlsx/Bar3DChart.html#gapDepth-instance_method" title="Axlsx::Bar3DChart#gapDepth (method)">#gapDepth</a></span> - <small>Axlsx::Line3DChart</small> + <small>Axlsx::Bar3DChart</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Bar3DChart.html#gapDepth-instance_method" title="Axlsx::Bar3DChart#gapDepth (method)">#gapDepth</a></span> + <span class='object_link'><a href="Axlsx/Line3DChart.html#gapDepth-instance_method" title="Axlsx::Line3DChart#gapDepth (method)">#gapDepth</a></span> - <small>Axlsx::Bar3DChart</small> + <small>Axlsx::Line3DChart</small> </li> @@ -1105,17 +1105,17 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Bar3DChart.html#grouping-instance_method" title="Axlsx::Bar3DChart#grouping (method)">#grouping</a></span> + <span class='object_link'><a href="Axlsx/Line3DChart.html#grouping-instance_method" title="Axlsx::Line3DChart#grouping (method)">#grouping</a></span> - <small>Axlsx::Bar3DChart</small> + <small>Axlsx::Line3DChart</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Line3DChart.html#grouping-instance_method" title="Axlsx::Line3DChart#grouping (method)">#grouping</a></span> + <span class='object_link'><a href="Axlsx/Bar3DChart.html#grouping-instance_method" title="Axlsx::Bar3DChart#grouping (method)">#grouping</a></span> - <small>Axlsx::Line3DChart</small> + <small>Axlsx::Bar3DChart</small> </li> @@ -1153,17 +1153,17 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/CellProtection.html#hidden-instance_method" title="Axlsx::CellProtection#hidden (method)">#hidden</a></span> + <span class='object_link'><a href="Axlsx/CellStyle.html#hidden-instance_method" title="Axlsx::CellStyle#hidden (method)">#hidden</a></span> - <small>Axlsx::CellProtection</small> + <small>Axlsx::CellStyle</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/CellStyle.html#hidden-instance_method" title="Axlsx::CellStyle#hidden (method)">#hidden</a></span> + <span class='object_link'><a href="Axlsx/CellProtection.html#hidden-instance_method" title="Axlsx::CellProtection#hidden (method)">#hidden</a></span> - <small>Axlsx::CellStyle</small> + <small>Axlsx::CellProtection</small> </li> @@ -1225,17 +1225,17 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Chart.html#index-instance_method" title="Axlsx::Chart#index (method)">#index</a></span> + <span class='object_link'><a href="Axlsx/Row.html#index-instance_method" title="Axlsx::Row#index (method)">#index</a></span> - <small>Axlsx::Chart</small> + <small>Axlsx::Row</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Row.html#index-instance_method" title="Axlsx::Row#index (method)">#index</a></span> + <span class='object_link'><a href="Axlsx/Worksheet.html#index-instance_method" title="Axlsx::Worksheet#index (method)">#index</a></span> - <small>Axlsx::Row</small> + <small>Axlsx::Worksheet</small> </li> @@ -1249,49 +1249,49 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Pic.html#index-instance_method" title="Axlsx::Pic#index (method)">#index</a></span> + <span class='object_link'><a href="Axlsx/Series.html#index-instance_method" title="Axlsx::Series#index (method)">#index</a></span> - <small>Axlsx::Pic</small> + <small>Axlsx::Series</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Series.html#index-instance_method" title="Axlsx::Series#index (method)">#index</a></span> + <span class='object_link'><a href="Axlsx/Cell.html#index-instance_method" title="Axlsx::Cell#index (method)">#index</a></span> - <small>Axlsx::Series</small> + <small>Axlsx::Cell</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/OneCellAnchor.html#index-instance_method" title="Axlsx::OneCellAnchor#index (method)">#index</a></span> + <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#index-instance_method" title="Axlsx::TwoCellAnchor#index (method)">#index</a></span> - <small>Axlsx::OneCellAnchor</small> + <small>Axlsx::TwoCellAnchor</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#index-instance_method" title="Axlsx::TwoCellAnchor#index (method)">#index</a></span> + <span class='object_link'><a href="Axlsx/Chart.html#index-instance_method" title="Axlsx::Chart#index (method)">#index</a></span> - <small>Axlsx::TwoCellAnchor</small> + <small>Axlsx::Chart</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Cell.html#index-instance_method" title="Axlsx::Cell#index (method)">#index</a></span> + <span class='object_link'><a href="Axlsx/OneCellAnchor.html#index-instance_method" title="Axlsx::OneCellAnchor#index (method)">#index</a></span> - <small>Axlsx::Cell</small> + <small>Axlsx::OneCellAnchor</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Worksheet.html#index-instance_method" title="Axlsx::Worksheet#index (method)">#index</a></span> + <span class='object_link'><a href="Axlsx/Pic.html#index-instance_method" title="Axlsx::Pic#index (method)">#index</a></span> - <small>Axlsx::Worksheet</small> + <small>Axlsx::Pic</small> </li> @@ -1305,361 +1305,361 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Styles.html#initialize-instance_method" title="Axlsx::Styles#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Bar3DChart.html#initialize-instance_method" title="Axlsx::Bar3DChart#initialize (method)">#initialize</a></span> - <small>Axlsx::Styles</small> + <small>Axlsx::Bar3DChart</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/BorderPr.html#initialize-instance_method" title="Axlsx::BorderPr#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/GradientFill.html#initialize-instance_method" title="Axlsx::GradientFill#initialize (method)">#initialize</a></span> - <small>Axlsx::BorderPr</small> + <small>Axlsx::GradientFill</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/CatAxis.html#initialize-instance_method" title="Axlsx::CatAxis#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Core.html#initialize-instance_method" title="Axlsx::Core#initialize (method)">#initialize</a></span> - <small>Axlsx::CatAxis</small> + <small>Axlsx::Core</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Axis.html#initialize-instance_method" title="Axlsx::Axis#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Scaling.html#initialize-instance_method" title="Axlsx::Scaling#initialize (method)">#initialize</a></span> - <small>Axlsx::Axis</small> + <small>Axlsx::Scaling</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/OneCellAnchor.html#initialize-instance_method" title="Axlsx::OneCellAnchor#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Styles.html#initialize-instance_method" title="Axlsx::Styles#initialize (method)">#initialize</a></span> - <small>Axlsx::OneCellAnchor</small> + <small>Axlsx::Styles</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Package.html#initialize-instance_method" title="Axlsx::Package#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/TableStyles.html#initialize-instance_method" title="Axlsx::TableStyles#initialize (method)">#initialize</a></span> - <small>Axlsx::Package</small> + <small>Axlsx::TableStyles</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#initialize-instance_method" title="Axlsx::TwoCellAnchor#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Fill.html#initialize-instance_method" title="Axlsx::Fill#initialize (method)">#initialize</a></span> - <small>Axlsx::TwoCellAnchor</small> + <small>Axlsx::Fill</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/CatAxisData.html#initialize-instance_method" title="Axlsx::CatAxisData#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Workbook.html#initialize-instance_method" title="Axlsx::Workbook#initialize (method)">#initialize</a></span> - <small>Axlsx::CatAxisData</small> + <small>Axlsx::Workbook</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Color.html#initialize-instance_method" title="Axlsx::Color#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Drawing.html#initialize-instance_method" title="Axlsx::Drawing#initialize (method)">#initialize</a></span> - <small>Axlsx::Color</small> + <small>Axlsx::Drawing</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Title.html#initialize-instance_method" title="Axlsx::Title#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/GradientStop.html#initialize-instance_method" title="Axlsx::GradientStop#initialize (method)">#initialize</a></span> - <small>Axlsx::Title</small> + <small>Axlsx::GradientStop</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Xf.html#initialize-instance_method" title="Axlsx::Xf#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Chart.html#initialize-instance_method" title="Axlsx::Chart#initialize (method)">#initialize</a></span> - <small>Axlsx::Xf</small> + <small>Axlsx::Chart</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/BarSeries.html#initialize-instance_method" title="Axlsx::BarSeries#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Line3DChart.html#initialize-instance_method" title="Axlsx::Line3DChart#initialize (method)">#initialize</a></span> - <small>Axlsx::BarSeries</small> + <small>Axlsx::Line3DChart</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Default.html#initialize-instance_method" title="Axlsx::Default#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/ContentType.html#initialize-instance_method" title="Axlsx::ContentType#initialize (method)">#initialize</a></span> - <small>Axlsx::Default</small> + <small>Axlsx::ContentType</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/ValAxis.html#initialize-instance_method" title="Axlsx::ValAxis#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Font.html#initialize-instance_method" title="Axlsx::Font#initialize (method)">#initialize</a></span> - <small>Axlsx::ValAxis</small> + <small>Axlsx::Font</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Font.html#initialize-instance_method" title="Axlsx::Font#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/NumFmt.html#initialize-instance_method" title="Axlsx::NumFmt#initialize (method)">#initialize</a></span> - <small>Axlsx::Font</small> + <small>Axlsx::NumFmt</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/TableStyleElement.html#initialize-instance_method" title="Axlsx::TableStyleElement#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/ValAxis.html#initialize-instance_method" title="Axlsx::ValAxis#initialize (method)">#initialize</a></span> - <small>Axlsx::TableStyleElement</small> + <small>Axlsx::ValAxis</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/CellStyle.html#initialize-instance_method" title="Axlsx::CellStyle#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Series.html#initialize-instance_method" title="Axlsx::Series#initialize (method)">#initialize</a></span> - <small>Axlsx::CellStyle</small> + <small>Axlsx::Series</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Pic.html#initialize-instance_method" title="Axlsx::Pic#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/LineSeries.html#initialize-instance_method" title="Axlsx::LineSeries#initialize (method)">#initialize</a></span> - <small>Axlsx::Pic</small> + <small>Axlsx::LineSeries</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Border.html#initialize-instance_method" title="Axlsx::Border#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Marker.html#initialize-instance_method" title="Axlsx::Marker#initialize (method)">#initialize</a></span> - <small>Axlsx::Border</small> + <small>Axlsx::Marker</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/TableStyle.html#initialize-instance_method" title="Axlsx::TableStyle#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Default.html#initialize-instance_method" title="Axlsx::Default#initialize (method)">#initialize</a></span> - <small>Axlsx::TableStyle</small> + <small>Axlsx::Default</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Pie3DChart.html#initialize-instance_method" title="Axlsx::Pie3DChart#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Override.html#initialize-instance_method" title="Axlsx::Override#initialize (method)">#initialize</a></span> - <small>Axlsx::Pie3DChart</small> + <small>Axlsx::Override</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Core.html#initialize-instance_method" title="Axlsx::Core#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/BorderPr.html#initialize-instance_method" title="Axlsx::BorderPr#initialize (method)">#initialize</a></span> - <small>Axlsx::Core</small> + <small>Axlsx::BorderPr</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Row.html#initialize-instance_method" title="Axlsx::Row#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Relationships.html#initialize-instance_method" title="Axlsx::Relationships#initialize (method)">#initialize</a></span> - <small>Axlsx::Row</small> + <small>Axlsx::Relationships</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/GradientFill.html#initialize-instance_method" title="Axlsx::GradientFill#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Axis.html#initialize-instance_method" title="Axlsx::Axis#initialize (method)">#initialize</a></span> - <small>Axlsx::GradientFill</small> + <small>Axlsx::Axis</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Chart.html#initialize-instance_method" title="Axlsx::Chart#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#initialize-instance_method" title="Axlsx::TwoCellAnchor#initialize (method)">#initialize</a></span> - <small>Axlsx::Chart</small> + <small>Axlsx::TwoCellAnchor</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Fill.html#initialize-instance_method" title="Axlsx::Fill#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/CellAlignment.html#initialize-instance_method" title="Axlsx::CellAlignment#initialize (method)">#initialize</a></span> - <small>Axlsx::Fill</small> + <small>Axlsx::CellAlignment</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Relationships.html#initialize-instance_method" title="Axlsx::Relationships#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Xf.html#initialize-instance_method" title="Axlsx::Xf#initialize (method)">#initialize</a></span> - <small>Axlsx::Relationships</small> + <small>Axlsx::Xf</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Worksheet.html#initialize-instance_method" title="Axlsx::Worksheet#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Row.html#initialize-instance_method" title="Axlsx::Row#initialize (method)">#initialize</a></span> - <small>Axlsx::Worksheet</small> + <small>Axlsx::Row</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Series.html#initialize-instance_method" title="Axlsx::Series#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/CatAxisData.html#initialize-instance_method" title="Axlsx::CatAxisData#initialize (method)">#initialize</a></span> - <small>Axlsx::Series</small> + <small>Axlsx::CatAxisData</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Relationship.html#initialize-instance_method" title="Axlsx::Relationship#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/CellProtection.html#initialize-instance_method" title="Axlsx::CellProtection#initialize (method)">#initialize</a></span> - <small>Axlsx::Relationship</small> + <small>Axlsx::CellProtection</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/PatternFill.html#initialize-instance_method" title="Axlsx::PatternFill#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/TableStyleElement.html#initialize-instance_method" title="Axlsx::TableStyleElement#initialize (method)">#initialize</a></span> - <small>Axlsx::PatternFill</small> + <small>Axlsx::TableStyleElement</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Cell.html#initialize-instance_method" title="Axlsx::Cell#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Border.html#initialize-instance_method" title="Axlsx::Border#initialize (method)">#initialize</a></span> - <small>Axlsx::Cell</small> + <small>Axlsx::Border</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/CellAlignment.html#initialize-instance_method" title="Axlsx::CellAlignment#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/View3D.html#initialize-instance_method" title="Axlsx::View3D#initialize (method)">#initialize</a></span> - <small>Axlsx::CellAlignment</small> + <small>Axlsx::View3D</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Bar3DChart.html#initialize-instance_method" title="Axlsx::Bar3DChart#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/GraphicFrame.html#initialize-instance_method" title="Axlsx::GraphicFrame#initialize (method)">#initialize</a></span> - <small>Axlsx::Bar3DChart</small> + <small>Axlsx::GraphicFrame</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/NumFmt.html#initialize-instance_method" title="Axlsx::NumFmt#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/SerAxis.html#initialize-instance_method" title="Axlsx::SerAxis#initialize (method)">#initialize</a></span> - <small>Axlsx::NumFmt</small> + <small>Axlsx::SerAxis</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Override.html#initialize-instance_method" title="Axlsx::Override#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Pie3DChart.html#initialize-instance_method" title="Axlsx::Pie3DChart#initialize (method)">#initialize</a></span> - <small>Axlsx::Override</small> + <small>Axlsx::Pie3DChart</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Workbook.html#initialize-instance_method" title="Axlsx::Workbook#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Cell.html#initialize-instance_method" title="Axlsx::Cell#initialize (method)">#initialize</a></span> - <small>Axlsx::Workbook</small> + <small>Axlsx::Cell</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/CellProtection.html#initialize-instance_method" title="Axlsx::CellProtection#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/OneCellAnchor.html#initialize-instance_method" title="Axlsx::OneCellAnchor#initialize (method)">#initialize</a></span> - <small>Axlsx::CellProtection</small> + <small>Axlsx::OneCellAnchor</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/LineSeries.html#initialize-instance_method" title="Axlsx::LineSeries#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/CellStyle.html#initialize-instance_method" title="Axlsx::CellStyle#initialize (method)">#initialize</a></span> - <small>Axlsx::LineSeries</small> + <small>Axlsx::CellStyle</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Marker.html#initialize-instance_method" title="Axlsx::Marker#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/BarSeries.html#initialize-instance_method" title="Axlsx::BarSeries#initialize (method)">#initialize</a></span> - <small>Axlsx::Marker</small> + <small>Axlsx::BarSeries</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/SerAxis.html#initialize-instance_method" title="Axlsx::SerAxis#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Color.html#initialize-instance_method" title="Axlsx::Color#initialize (method)">#initialize</a></span> - <small>Axlsx::SerAxis</small> + <small>Axlsx::Color</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/TableStyles.html#initialize-instance_method" title="Axlsx::TableStyles#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/PatternFill.html#initialize-instance_method" title="Axlsx::PatternFill#initialize (method)">#initialize</a></span> - <small>Axlsx::TableStyles</small> + <small>Axlsx::PatternFill</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Scaling.html#initialize-instance_method" title="Axlsx::Scaling#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/CatAxis.html#initialize-instance_method" title="Axlsx::CatAxis#initialize (method)">#initialize</a></span> - <small>Axlsx::Scaling</small> + <small>Axlsx::CatAxis</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/GraphicFrame.html#initialize-instance_method" title="Axlsx::GraphicFrame#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Title.html#initialize-instance_method" title="Axlsx::Title#initialize (method)">#initialize</a></span> - <small>Axlsx::GraphicFrame</small> + <small>Axlsx::Title</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/View3D.html#initialize-instance_method" title="Axlsx::View3D#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Relationship.html#initialize-instance_method" title="Axlsx::Relationship#initialize (method)">#initialize</a></span> - <small>Axlsx::View3D</small> + <small>Axlsx::Relationship</small> </li> @@ -1673,33 +1673,33 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/GradientStop.html#initialize-instance_method" title="Axlsx::GradientStop#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/TableStyle.html#initialize-instance_method" title="Axlsx::TableStyle#initialize (method)">#initialize</a></span> - <small>Axlsx::GradientStop</small> + <small>Axlsx::TableStyle</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Line3DChart.html#initialize-instance_method" title="Axlsx::Line3DChart#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Pic.html#initialize-instance_method" title="Axlsx::Pic#initialize (method)">#initialize</a></span> - <small>Axlsx::Line3DChart</small> + <small>Axlsx::Pic</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/ContentType.html#initialize-instance_method" title="Axlsx::ContentType#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Worksheet.html#initialize-instance_method" title="Axlsx::Worksheet#initialize (method)">#initialize</a></span> - <small>Axlsx::ContentType</small> + <small>Axlsx::Worksheet</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Drawing.html#initialize-instance_method" title="Axlsx::Drawing#initialize (method)">#initialize</a></span> + <span class='object_link'><a href="Axlsx/Package.html#initialize-instance_method" title="Axlsx::Package#initialize (method)">#initialize</a></span> - <small>Axlsx::Drawing</small> + <small>Axlsx::Package</small> </li> @@ -1793,65 +1793,65 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/TableStyle.html#name-instance_method" title="Axlsx::TableStyle#name (method)">#name</a></span> + <span class='object_link'><a href="Axlsx/BorderPr.html#name-instance_method" title="Axlsx::BorderPr#name (method)">#name</a></span> - <small>Axlsx::TableStyle</small> + <small>Axlsx::BorderPr</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Pic.html#name-instance_method" title="Axlsx::Pic#name (method)">#name</a></span> + <span class='object_link'><a href="Axlsx/CellStyle.html#name-instance_method" title="Axlsx::CellStyle#name (method)">#name</a></span> - <small>Axlsx::Pic</small> + <small>Axlsx::CellStyle</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Font.html#name-instance_method" title="Axlsx::Font#name (method)">#name</a></span> + <span class='object_link'><a href="Axlsx/Worksheet.html#name-instance_method" title="Axlsx::Worksheet#name (method)">#name</a></span> - <small>Axlsx::Font</small> + <small>Axlsx::Worksheet</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/BorderPr.html#name-instance_method" title="Axlsx::BorderPr#name (method)">#name</a></span> + <span class='object_link'><a href="Axlsx/Font.html#name-instance_method" title="Axlsx::Font#name (method)">#name</a></span> - <small>Axlsx::BorderPr</small> + <small>Axlsx::Font</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/CellStyle.html#name-instance_method" title="Axlsx::CellStyle#name (method)">#name</a></span> + <span class='object_link'><a href="Axlsx/Pic.html#name-instance_method" title="Axlsx::Pic#name (method)">#name</a></span> - <small>Axlsx::CellStyle</small> + <small>Axlsx::Pic</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Worksheet.html#name-instance_method" title="Axlsx::Worksheet#name (method)">#name</a></span> + <span class='object_link'><a href="Axlsx/TableStyle.html#name-instance_method" title="Axlsx::TableStyle#name (method)">#name</a></span> - <small>Axlsx::Worksheet</small> + <small>Axlsx::TableStyle</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/NumFmt.html#numFmtId-instance_method" title="Axlsx::NumFmt#numFmtId (method)">#numFmtId</a></span> + <span class='object_link'><a href="Axlsx/Xf.html#numFmtId-instance_method" title="Axlsx::Xf#numFmtId (method)">#numFmtId</a></span> - <small>Axlsx::NumFmt</small> + <small>Axlsx::Xf</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Xf.html#numFmtId-instance_method" title="Axlsx::Xf#numFmtId (method)">#numFmtId</a></span> + <span class='object_link'><a href="Axlsx/NumFmt.html#numFmtId-instance_method" title="Axlsx::NumFmt#numFmtId (method)">#numFmtId</a></span> - <small>Axlsx::Xf</small> + <small>Axlsx::NumFmt</small> </li> @@ -1905,17 +1905,17 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Font.html#outline-instance_method" title="Axlsx::Font#outline (method)">#outline</a></span> + <span class='object_link'><a href="Axlsx/Border.html#outline-instance_method" title="Axlsx::Border#outline (method)">#outline</a></span> - <small>Axlsx::Font</small> + <small>Axlsx::Border</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Border.html#outline-instance_method" title="Axlsx::Border#outline (method)">#outline</a></span> + <span class='object_link'><a href="Axlsx/Font.html#outline-instance_method" title="Axlsx::Font#outline (method)">#outline</a></span> - <small>Axlsx::Border</small> + <small>Axlsx::Font</small> </li> @@ -1961,9 +1961,9 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Worksheet.html#pn-instance_method" title="Axlsx::Worksheet#pn (method)">#pn</a></span> + <span class='object_link'><a href="Axlsx/Chart.html#pn-instance_method" title="Axlsx::Chart#pn (method)">#pn</a></span> - <small>Axlsx::Worksheet</small> + <small>Axlsx::Chart</small> </li> @@ -1977,9 +1977,9 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Chart.html#pn-instance_method" title="Axlsx::Chart#pn (method)">#pn</a></span> + <span class='object_link'><a href="Axlsx/Worksheet.html#pn-instance_method" title="Axlsx::Worksheet#pn (method)">#pn</a></span> - <small>Axlsx::Chart</small> + <small>Axlsx::Worksheet</small> </li> @@ -2033,25 +2033,25 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Drawing.html#rId-instance_method" title="Axlsx::Drawing#rId (method)">#rId</a></span> + <span class='object_link'><a href="Axlsx/Worksheet.html#rId-instance_method" title="Axlsx::Worksheet#rId (method)">#rId</a></span> - <small>Axlsx::Drawing</small> + <small>Axlsx::Worksheet</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/GraphicFrame.html#rId-instance_method" title="Axlsx::GraphicFrame#rId (method)">#rId</a></span> + <span class='object_link'><a href="Axlsx/Drawing.html#rId-instance_method" title="Axlsx::Drawing#rId (method)">#rId</a></span> - <small>Axlsx::GraphicFrame</small> + <small>Axlsx::Drawing</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Worksheet.html#rId-instance_method" title="Axlsx::Worksheet#rId (method)">#rId</a></span> + <span class='object_link'><a href="Axlsx/GraphicFrame.html#rId-instance_method" title="Axlsx::GraphicFrame#rId (method)">#rId</a></span> - <small>Axlsx::Worksheet</small> + <small>Axlsx::GraphicFrame</small> </li> @@ -2073,9 +2073,9 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Drawing.html#relationships-instance_method" title="Axlsx::Drawing#relationships (method)">#relationships</a></span> + <span class='object_link'><a href="Axlsx/Workbook.html#relationships-instance_method" title="Axlsx::Workbook#relationships (method)">#relationships</a></span> - <small>Axlsx::Drawing</small> + <small>Axlsx::Workbook</small> </li> @@ -2089,9 +2089,9 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Workbook.html#relationships-instance_method" title="Axlsx::Workbook#relationships (method)">#relationships</a></span> + <span class='object_link'><a href="Axlsx/Drawing.html#relationships-instance_method" title="Axlsx::Drawing#relationships (method)">#relationships</a></span> - <small>Axlsx::Workbook</small> + <small>Axlsx::Drawing</small> </li> @@ -2153,17 +2153,17 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Marker.html#row-instance_method" title="Axlsx::Marker#row (method)">#row</a></span> + <span class='object_link'><a href="Axlsx/Cell.html#row-instance_method" title="Axlsx::Cell#row (method)">#row</a></span> - <small>Axlsx::Marker</small> + <small>Axlsx::Cell</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Cell.html#row-instance_method" title="Axlsx::Cell#row (method)">#row</a></span> + <span class='object_link'><a href="Axlsx/Marker.html#row-instance_method" title="Axlsx::Marker#row (method)">#row</a></span> - <small>Axlsx::Cell</small> + <small>Axlsx::Marker</small> </li> @@ -2249,17 +2249,17 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/BarSeries.html#shape-instance_method" title="Axlsx::BarSeries#shape (method)">#shape</a></span> + <span class='object_link'><a href="Axlsx/Bar3DChart.html#shape-instance_method" title="Axlsx::Bar3DChart#shape (method)">#shape</a></span> - <small>Axlsx::BarSeries</small> + <small>Axlsx::Bar3DChart</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Bar3DChart.html#shape-instance_method" title="Axlsx::Bar3DChart#shape (method)">#shape</a></span> + <span class='object_link'><a href="Axlsx/BarSeries.html#shape-instance_method" title="Axlsx::BarSeries#shape (method)">#shape</a></span> - <small>Axlsx::Bar3DChart</small> + <small>Axlsx::BarSeries</small> </li> @@ -2289,17 +2289,17 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Chart.html#start_at-instance_method" title="Axlsx::Chart#start_at (method)">#start_at</a></span> + <span class='object_link'><a href="Axlsx/Pic.html#start_at-instance_method" title="Axlsx::Pic#start_at (method)">#start_at</a></span> - <small>Axlsx::Chart</small> + <small>Axlsx::Pic</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Pic.html#start_at-instance_method" title="Axlsx::Pic#start_at (method)">#start_at</a></span> + <span class='object_link'><a href="Axlsx/Chart.html#start_at-instance_method" title="Axlsx::Chart#start_at (method)">#start_at</a></span> - <small>Axlsx::Pic</small> + <small>Axlsx::Chart</small> </li> @@ -2321,17 +2321,17 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/BorderPr.html#style-instance_method" title="Axlsx::BorderPr#style (method)">#style</a></span> + <span class='object_link'><a href="Axlsx/Chart.html#style-instance_method" title="Axlsx::Chart#style (method)">#style</a></span> - <small>Axlsx::BorderPr</small> + <small>Axlsx::Chart</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Chart.html#style-instance_method" title="Axlsx::Chart#style (method)">#style</a></span> + <span class='object_link'><a href="Axlsx/BorderPr.html#style-instance_method" title="Axlsx::BorderPr#style (method)">#style</a></span> - <small>Axlsx::Chart</small> + <small>Axlsx::BorderPr</small> </li> @@ -2433,33 +2433,33 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Series.html#title-instance_method" title="Axlsx::Series#title (method)">#title</a></span> + <span class='object_link'><a href="Axlsx/Chart.html#title-instance_method" title="Axlsx::Chart#title (method)">#title</a></span> - <small>Axlsx::Series</small> + <small>Axlsx::Chart</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Chart.html#title-instance_method" title="Axlsx::Chart#title (method)">#title</a></span> + <span class='object_link'><a href="Axlsx/Series.html#title-instance_method" title="Axlsx::Series#title (method)">#title</a></span> - <small>Axlsx::Chart</small> + <small>Axlsx::Series</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Chart.html#to-instance_method" title="Axlsx::Chart#to (method)">#to</a></span> + <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#to-instance_method" title="Axlsx::TwoCellAnchor#to (method)">#to</a></span> - <small>Axlsx::Chart</small> + <small>Axlsx::TwoCellAnchor</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#to-instance_method" title="Axlsx::TwoCellAnchor#to (method)">#to</a></span> + <span class='object_link'><a href="Axlsx/Chart.html#to-instance_method" title="Axlsx::Chart#to (method)">#to</a></span> - <small>Axlsx::TwoCellAnchor</small> + <small>Axlsx::Chart</small> </li> @@ -2473,161 +2473,161 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Default.html#to_xml-instance_method" title="Axlsx::Default#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/ValAxis.html#to_xml-instance_method" title="Axlsx::ValAxis#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Default</small> + <small>Axlsx::ValAxis</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/GraphicFrame.html#to_xml-instance_method" title="Axlsx::GraphicFrame#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Font.html#to_xml-instance_method" title="Axlsx::Font#to_xml (method)">#to_xml</a></span> - <small>Axlsx::GraphicFrame</small> + <small>Axlsx::Font</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Styles.html#to_xml-instance_method" title="Axlsx::Styles#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Default.html#to_xml-instance_method" title="Axlsx::Default#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Styles</small> + <small>Axlsx::Default</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Bar3DChart.html#to_xml-instance_method" title="Axlsx::Bar3DChart#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/CellProtection.html#to_xml-instance_method" title="Axlsx::CellProtection#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Bar3DChart</small> + <small>Axlsx::CellProtection</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Override.html#to_xml-instance_method" title="Axlsx::Override#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Chart.html#to_xml-instance_method" title="Axlsx::Chart#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Override</small> + <small>Axlsx::Chart</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/BorderPr.html#to_xml-instance_method" title="Axlsx::BorderPr#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Axis.html#to_xml-instance_method" title="Axlsx::Axis#to_xml (method)">#to_xml</a></span> - <small>Axlsx::BorderPr</small> + <small>Axlsx::Axis</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Line3DChart.html#to_xml-instance_method" title="Axlsx::Line3DChart#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Core.html#to_xml-instance_method" title="Axlsx::Core#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Line3DChart</small> + <small>Axlsx::Core</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Chart.html#to_xml-instance_method" title="Axlsx::Chart#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Override.html#to_xml-instance_method" title="Axlsx::Override#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Chart</small> + <small>Axlsx::Override</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Worksheet.html#to_xml-instance_method" title="Axlsx::Worksheet#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/App.html#to_xml-instance_method" title="Axlsx::App#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Worksheet</small> + <small>Axlsx::App</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/OneCellAnchor.html#to_xml-instance_method" title="Axlsx::OneCellAnchor#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Workbook.html#to_xml-instance_method" title="Axlsx::Workbook#to_xml (method)">#to_xml</a></span> - <small>Axlsx::OneCellAnchor</small> + <small>Axlsx::Workbook</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/TableStyles.html#to_xml-instance_method" title="Axlsx::TableStyles#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/PatternFill.html#to_xml-instance_method" title="Axlsx::PatternFill#to_xml (method)">#to_xml</a></span> - <small>Axlsx::TableStyles</small> + <small>Axlsx::PatternFill</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/ValAxisData.html#to_xml-instance_method" title="Axlsx::ValAxisData#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/BorderPr.html#to_xml-instance_method" title="Axlsx::BorderPr#to_xml (method)">#to_xml</a></span> - <small>Axlsx::ValAxisData</small> + <small>Axlsx::BorderPr</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/TableStyleElement.html#to_xml-instance_method" title="Axlsx::TableStyleElement#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Pie3DChart.html#to_xml-instance_method" title="Axlsx::Pie3DChart#to_xml (method)">#to_xml</a></span> - <small>Axlsx::TableStyleElement</small> + <small>Axlsx::Pie3DChart</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/ContentType.html#to_xml-instance_method" title="Axlsx::ContentType#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Xf.html#to_xml-instance_method" title="Axlsx::Xf#to_xml (method)">#to_xml</a></span> - <small>Axlsx::ContentType</small> + <small>Axlsx::Xf</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/CellAlignment.html#to_xml-instance_method" title="Axlsx::CellAlignment#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Border.html#to_xml-instance_method" title="Axlsx::Border#to_xml (method)">#to_xml</a></span> - <small>Axlsx::CellAlignment</small> + <small>Axlsx::Border</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Border.html#to_xml-instance_method" title="Axlsx::Border#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#to_xml-instance_method" title="Axlsx::TwoCellAnchor#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Border</small> + <small>Axlsx::TwoCellAnchor</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Pic.html#to_xml-instance_method" title="Axlsx::Pic#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/CatAxisData.html#to_xml-instance_method" title="Axlsx::CatAxisData#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Pic</small> + <small>Axlsx::CatAxisData</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Color.html#to_xml-instance_method" title="Axlsx::Color#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/GradientFill.html#to_xml-instance_method" title="Axlsx::GradientFill#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Color</small> + <small>Axlsx::GradientFill</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/CatAxis.html#to_xml-instance_method" title="Axlsx::CatAxis#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Fill.html#to_xml-instance_method" title="Axlsx::Fill#to_xml (method)">#to_xml</a></span> - <small>Axlsx::CatAxis</small> + <small>Axlsx::Fill</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Title.html#to_xml-instance_method" title="Axlsx::Title#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/GradientStop.html#to_xml-instance_method" title="Axlsx::GradientStop#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Title</small> + <small>Axlsx::GradientStop</small> </li> @@ -2641,249 +2641,249 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/LineSeries.html#to_xml-instance_method" title="Axlsx::LineSeries#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/View3D.html#to_xml-instance_method" title="Axlsx::View3D#to_xml (method)">#to_xml</a></span> - <small>Axlsx::LineSeries</small> + <small>Axlsx::View3D</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Series.html#to_xml-instance_method" title="Axlsx::Series#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/SerAxis.html#to_xml-instance_method" title="Axlsx::SerAxis#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Series</small> + <small>Axlsx::SerAxis</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Row.html#to_xml-instance_method" title="Axlsx::Row#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/CellStyle.html#to_xml-instance_method" title="Axlsx::CellStyle#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Row</small> + <small>Axlsx::CellStyle</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Scaling.html#to_xml-instance_method" title="Axlsx::Scaling#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/LineSeries.html#to_xml-instance_method" title="Axlsx::LineSeries#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Scaling</small> + <small>Axlsx::LineSeries</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/PatternFill.html#to_xml-instance_method" title="Axlsx::PatternFill#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Series.html#to_xml-instance_method" title="Axlsx::Series#to_xml (method)">#to_xml</a></span> - <small>Axlsx::PatternFill</small> + <small>Axlsx::Series</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/TableStyle.html#to_xml-instance_method" title="Axlsx::TableStyle#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/CellAlignment.html#to_xml-instance_method" title="Axlsx::CellAlignment#to_xml (method)">#to_xml</a></span> - <small>Axlsx::TableStyle</small> + <small>Axlsx::CellAlignment</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/CatAxisData.html#to_xml-instance_method" title="Axlsx::CatAxisData#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/OneCellAnchor.html#to_xml-instance_method" title="Axlsx::OneCellAnchor#to_xml (method)">#to_xml</a></span> - <small>Axlsx::CatAxisData</small> + <small>Axlsx::OneCellAnchor</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/BarSeries.html#to_xml-instance_method" title="Axlsx::BarSeries#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Relationships.html#to_xml-instance_method" title="Axlsx::Relationships#to_xml (method)">#to_xml</a></span> - <small>Axlsx::BarSeries</small> + <small>Axlsx::Relationships</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Relationship.html#to_xml-instance_method" title="Axlsx::Relationship#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Color.html#to_xml-instance_method" title="Axlsx::Color#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Relationship</small> + <small>Axlsx::Color</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Xf.html#to_xml-instance_method" title="Axlsx::Xf#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/SeriesTitle.html#to_xml-instance_method" title="Axlsx::SeriesTitle#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Xf</small> + <small>Axlsx::SeriesTitle</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Relationships.html#to_xml-instance_method" title="Axlsx::Relationships#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Title.html#to_xml-instance_method" title="Axlsx::Title#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Relationships</small> + <small>Axlsx::Title</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/GradientStop.html#to_xml-instance_method" title="Axlsx::GradientStop#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Cell.html#to_xml-instance_method" title="Axlsx::Cell#to_xml (method)">#to_xml</a></span> - <small>Axlsx::GradientStop</small> + <small>Axlsx::Cell</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/ValAxis.html#to_xml-instance_method" title="Axlsx::ValAxis#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Bar3DChart.html#to_xml-instance_method" title="Axlsx::Bar3DChart#to_xml (method)">#to_xml</a></span> - <small>Axlsx::ValAxis</small> + <small>Axlsx::Bar3DChart</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Core.html#to_xml-instance_method" title="Axlsx::Core#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/TableStyleElement.html#to_xml-instance_method" title="Axlsx::TableStyleElement#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Core</small> + <small>Axlsx::TableStyleElement</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/PieSeries.html#to_xml-instance_method" title="Axlsx::PieSeries#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Drawing.html#to_xml-instance_method" title="Axlsx::Drawing#to_xml (method)">#to_xml</a></span> - <small>Axlsx::PieSeries</small> + <small>Axlsx::Drawing</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Workbook.html#to_xml-instance_method" title="Axlsx::Workbook#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/CatAxis.html#to_xml-instance_method" title="Axlsx::CatAxis#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Workbook</small> + <small>Axlsx::CatAxis</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/CellStyle.html#to_xml-instance_method" title="Axlsx::CellStyle#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/ContentType.html#to_xml-instance_method" title="Axlsx::ContentType#to_xml (method)">#to_xml</a></span> - <small>Axlsx::CellStyle</small> + <small>Axlsx::ContentType</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/NumFmt.html#to_xml-instance_method" title="Axlsx::NumFmt#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Pic.html#to_xml-instance_method" title="Axlsx::Pic#to_xml (method)">#to_xml</a></span> - <small>Axlsx::NumFmt</small> + <small>Axlsx::Pic</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Font.html#to_xml-instance_method" title="Axlsx::Font#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/NumFmt.html#to_xml-instance_method" title="Axlsx::NumFmt#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Font</small> + <small>Axlsx::NumFmt</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Cell.html#to_xml-instance_method" title="Axlsx::Cell#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/TableStyle.html#to_xml-instance_method" title="Axlsx::TableStyle#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Cell</small> + <small>Axlsx::TableStyle</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/SerAxis.html#to_xml-instance_method" title="Axlsx::SerAxis#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Worksheet.html#to_xml-instance_method" title="Axlsx::Worksheet#to_xml (method)">#to_xml</a></span> - <small>Axlsx::SerAxis</small> + <small>Axlsx::Worksheet</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Axis.html#to_xml-instance_method" title="Axlsx::Axis#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Styles.html#to_xml-instance_method" title="Axlsx::Styles#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Axis</small> + <small>Axlsx::Styles</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/App.html#to_xml-instance_method" title="Axlsx::App#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/GraphicFrame.html#to_xml-instance_method" title="Axlsx::GraphicFrame#to_xml (method)">#to_xml</a></span> - <small>Axlsx::App</small> + <small>Axlsx::GraphicFrame</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Fill.html#to_xml-instance_method" title="Axlsx::Fill#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/TableStyles.html#to_xml-instance_method" title="Axlsx::TableStyles#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Fill</small> + <small>Axlsx::TableStyles</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/SeriesTitle.html#to_xml-instance_method" title="Axlsx::SeriesTitle#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Line3DChart.html#to_xml-instance_method" title="Axlsx::Line3DChart#to_xml (method)">#to_xml</a></span> - <small>Axlsx::SeriesTitle</small> + <small>Axlsx::Line3DChart</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/TwoCellAnchor.html#to_xml-instance_method" title="Axlsx::TwoCellAnchor#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Scaling.html#to_xml-instance_method" title="Axlsx::Scaling#to_xml (method)">#to_xml</a></span> - <small>Axlsx::TwoCellAnchor</small> + <small>Axlsx::Scaling</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/View3D.html#to_xml-instance_method" title="Axlsx::View3D#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Relationship.html#to_xml-instance_method" title="Axlsx::Relationship#to_xml (method)">#to_xml</a></span> - <small>Axlsx::View3D</small> + <small>Axlsx::Relationship</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/GradientFill.html#to_xml-instance_method" title="Axlsx::GradientFill#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/ValAxisData.html#to_xml-instance_method" title="Axlsx::ValAxisData#to_xml (method)">#to_xml</a></span> - <small>Axlsx::GradientFill</small> + <small>Axlsx::ValAxisData</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/CellProtection.html#to_xml-instance_method" title="Axlsx::CellProtection#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/PieSeries.html#to_xml-instance_method" title="Axlsx::PieSeries#to_xml (method)">#to_xml</a></span> - <small>Axlsx::CellProtection</small> + <small>Axlsx::PieSeries</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/Pie3DChart.html#to_xml-instance_method" title="Axlsx::Pie3DChart#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/BarSeries.html#to_xml-instance_method" title="Axlsx::BarSeries#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Pie3DChart</small> + <small>Axlsx::BarSeries</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Drawing.html#to_xml-instance_method" title="Axlsx::Drawing#to_xml (method)">#to_xml</a></span> + <span class='object_link'><a href="Axlsx/Row.html#to_xml-instance_method" title="Axlsx::Row#to_xml (method)">#to_xml</a></span> - <small>Axlsx::Drawing</small> + <small>Axlsx::Row</small> </li> @@ -2897,9 +2897,9 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/TableStyleElement.html#type-instance_method" title="Axlsx::TableStyleElement#type (method)">#type</a></span> + <span class='object_link'><a href="Axlsx/Cell.html#type-instance_method" title="Axlsx::Cell#type (method)">#type</a></span> - <small>Axlsx::TableStyleElement</small> + <small>Axlsx::Cell</small> </li> @@ -2913,9 +2913,9 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/Cell.html#type-instance_method" title="Axlsx::Cell#type (method)">#type</a></span> + <span class='object_link'><a href="Axlsx/TableStyleElement.html#type-instance_method" title="Axlsx::TableStyleElement#type (method)">#type</a></span> - <small>Axlsx::Cell</small> + <small>Axlsx::TableStyleElement</small> </li> @@ -2945,33 +2945,33 @@ <li class="r2 "> - <span class='object_link'><a href="Axlsx/RestrictionValidator.html#validate-class_method" title="Axlsx::RestrictionValidator.validate (method)">validate</a></span> + <span class='object_link'><a href="Axlsx/Package.html#validate-instance_method" title="Axlsx::Package#validate (method)">#validate</a></span> - <small>Axlsx::RestrictionValidator</small> + <small>Axlsx::Package</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/DataTypeValidator.html#validate-class_method" title="Axlsx::DataTypeValidator.validate (method)">validate</a></span> + <span class='object_link'><a href="Axlsx/RegexValidator.html#validate-class_method" title="Axlsx::RegexValidator.validate (method)">validate</a></span> - <small>Axlsx::DataTypeValidator</small> + <small>Axlsx::RegexValidator</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Package.html#validate-instance_method" title="Axlsx::Package#validate (method)">#validate</a></span> + <span class='object_link'><a href="Axlsx/RestrictionValidator.html#validate-class_method" title="Axlsx::RestrictionValidator.validate (method)">validate</a></span> - <small>Axlsx::Package</small> + <small>Axlsx::RestrictionValidator</small> </li> <li class="r1 "> - <span class='object_link'><a href="Axlsx/RegexValidator.html#validate-class_method" title="Axlsx::RegexValidator.validate (method)">validate</a></span> + <span class='object_link'><a href="Axlsx/DataTypeValidator.html#validate-class_method" title="Axlsx::DataTypeValidator.validate (method)">validate</a></span> - <small>Axlsx::RegexValidator</small> + <small>Axlsx::DataTypeValidator</small> </li> @@ -3097,17 +3097,17 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/OneCellAnchor.html#width-instance_method" title="Axlsx::OneCellAnchor#width (method)">#width</a></span> + <span class='object_link'><a href="Axlsx/Pic.html#width-instance_method" title="Axlsx::Pic#width (method)">#width</a></span> - <small>Axlsx::OneCellAnchor</small> + <small>Axlsx::Pic</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Pic.html#width-instance_method" title="Axlsx::Pic#width (method)">#width</a></span> + <span class='object_link'><a href="Axlsx/OneCellAnchor.html#width-instance_method" title="Axlsx::OneCellAnchor#width (method)">#width</a></span> - <small>Axlsx::Pic</small> + <small>Axlsx::OneCellAnchor</small> </li> @@ -3145,17 +3145,17 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/Row.html#worksheet-instance_method" title="Axlsx::Row#worksheet (method)">#worksheet</a></span> + <span class='object_link'><a href="Axlsx/Drawing.html#worksheet-instance_method" title="Axlsx::Drawing#worksheet (method)">#worksheet</a></span> - <small>Axlsx::Row</small> + <small>Axlsx::Drawing</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Drawing.html#worksheet-instance_method" title="Axlsx::Drawing#worksheet (method)">#worksheet</a></span> + <span class='object_link'><a href="Axlsx/Row.html#worksheet-instance_method" title="Axlsx::Row#worksheet (method)">#worksheet</a></span> - <small>Axlsx::Drawing</small> + <small>Axlsx::Row</small> </li> @@ -3177,17 +3177,17 @@ <li class="r1 "> - <span class='object_link'><a href="Axlsx/CellStyle.html#xfId-instance_method" title="Axlsx::CellStyle#xfId (method)">#xfId</a></span> + <span class='object_link'><a href="Axlsx/Xf.html#xfId-instance_method" title="Axlsx::Xf#xfId (method)">#xfId</a></span> - <small>Axlsx::CellStyle</small> + <small>Axlsx::Xf</small> </li> <li class="r2 "> - <span class='object_link'><a href="Axlsx/Xf.html#xfId-instance_method" title="Axlsx::Xf#xfId (method)">#xfId</a></span> + <span class='object_link'><a href="Axlsx/CellStyle.html#xfId-instance_method" title="Axlsx::CellStyle#xfId (method)">#xfId</a></span> - <small>Axlsx::Xf</small> + <small>Axlsx::CellStyle</small> </li> diff --git a/doc/top-level-namespace.html b/doc/top-level-namespace.html index 68fe2e69..7b591683 100644 --- a/doc/top-level-namespace.html +++ b/doc/top-level-namespace.html @@ -94,7 +94,7 @@ </div> <div id="footer"> - Generated on Tue Nov 29 13:29:02 2011 by + Generated on Wed Nov 30 08:46:38 2011 by <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> 0.7.3 (ruby-1.8.7). </div> diff --git a/examples/example.rb b/examples/example.rb index 747c34ee..1ef2ab24 100644 --- a/examples/example.rb +++ b/examples/example.rb @@ -1,7 +1,7 @@ #!/usr/bin/env ruby # -*- coding: utf-8 -*- require 'rubygems' - require 'axlsx' + require 'axlsx.rb' #A Simple Workbook |
