lib/axlsx/workbook/worksheet/row.rb in axlsx-1.0.16 vs lib/axlsx/workbook/worksheet/row.rb in axlsx-1.0.17
- old
+ new
@@ -1,5 +1,6 @@
+# encoding: UTF-8
module Axlsx
# A Row is a single row in a worksheet.
# @note The recommended way to manage rows and cells is to use Worksheet#add_row
# @see Worksheet#add_row
class Row
@@ -9,9 +10,23 @@
attr_reader :worksheet
# The cells this row holds
# @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.
# If the types option is an array, cell types are applied by index for each cell