diff options
| author | Randy Morgan <[email protected]> | 2012-02-14 08:33:39 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-02-14 08:33:39 +0900 |
| commit | 8bcc77953262fd934bd4b84daf53d946c576193b (patch) | |
| tree | 4179fefc544b92aeaee97a031dd083a52423aac8 /lib/axlsx/workbook/worksheet/row.rb | |
| parent | 80459ca70930ee8522b8547669bbbe7aef5a12a4 (diff) | |
| download | caxlsx-8bcc77953262fd934bd4b84daf53d946c576193b.tar.gz caxlsx-8bcc77953262fd934bd4b84daf53d946c576193b.zip | |
changing column_widths to accept *args instead of a declared array.
Diffstat (limited to 'lib/axlsx/workbook/worksheet/row.rb')
| -rw-r--r-- | lib/axlsx/workbook/worksheet/row.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/axlsx/workbook/worksheet/row.rb b/lib/axlsx/workbook/worksheet/row.rb index 61bd4d8f..9c35a302 100644 --- a/lib/axlsx/workbook/worksheet/row.rb +++ b/lib/axlsx/workbook/worksheet/row.rb @@ -13,6 +13,20 @@ module Axlsx # @return [SimpleTypedList] attr_reader :cells + # TODO 18.3.1.73 + # collapsed + # customFormat + # customHeight + # hidden + # ht (height) + # outlineLevel + # ph + # s (style) + # spans + # thickTop + # thickBottom + + # 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: # If the types option is defined and is a symbol it is applied to all the cells created. |
