module OoxmlParser::WorksheetHelper
Module with helper methods for worksheet
Public Instance Methods
default_columns?()
click to toggle source
@return [True, False] is columns are with default rules
# File lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/worksheet/worksheet_helper.rb, line 7 def default_columns? return true if @columns.empty? return true unless @columns.first.custom_width false end