Class: Writeexcel::Worksheet::CellDimension
Instance Method Summary
collapse
Methods inherited from CellRange
#col, #increment_col_max, #increment_row_max, #initialize, #name_record_long, #name_record_short, #row
Instance Method Details
#col_max ⇒ Object
170
171
172
|
# File 'lib/writeexcel/cell_range.rb', line 170
def col_max
@col_max || 0
end
|
#col_min ⇒ Object
162
163
164
|
# File 'lib/writeexcel/cell_range.rb', line 162
def col_min
@col_min || 0
end
|
#row_max ⇒ Object
166
167
168
|
# File 'lib/writeexcel/cell_range.rb', line 166
def row_max
@row_max || 0
end
|
#row_min ⇒ Object
158
159
160
|
# File 'lib/writeexcel/cell_range.rb', line 158
def row_min
@row_min || 0
end
|