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
171
172
173
|
# File 'lib/writeexcel/cell_range.rb', line 171
def col_max
@col_max || 0
end
|
#col_min ⇒ Object
163
164
165
|
# File 'lib/writeexcel/cell_range.rb', line 163
def col_min
@col_min || 0
end
|
#row_max ⇒ Object
167
168
169
|
# File 'lib/writeexcel/cell_range.rb', line 167
def row_max
@row_max || 0
end
|
#row_min ⇒ Object
159
160
161
|
# File 'lib/writeexcel/cell_range.rb', line 159
def row_min
@row_min || 0
end
|