我正在尝试使用“电子表格”解析excel电子表格.我怎么能得到每一行的背景颜色?
解决方法
book = Spreadsheet::Workbook.new sheet = book.create_worksheet :name => 'Name' format = Spreadsheet::Format.new :color=> :blue,:pattern_fg_color => :yellow,:pattern => 1 sheet.row(0).set_format(0,format) #for first cell in first row
要么
sheet.row(0).default_format = format #for entire first row
您可以遍历每一行/单元格,并将样式准确地应用到您想要的位置