我正在使用 axlsx gem 创建 excel 表。我正在尝试生成一个包含标题的报告。我想为每个包含标题文本的单元格添加注释。我可以通过右键单击单元格并选择“插入评论”在 Libre office calc 中正常执行此操作。我想在尝试使用 ruby 程序生成 excel 表时做同样的事情。
我的代码如下所示:
wb = xlsx_package.workbook
style_shout = wb.styles.add_style sz: 12, b: true, alignment: { horizontal: :center }
choices = ["Title", "First Name","Last Name", "Company","ID Number", "Email ID"]
# Build the Excel
wb.add_worksheet(name: "users_list") do |sheet|
sheet.add_row choices.flatten, :style => style_shout
end
axlsx 的文档显示了一个 add_comment 方法,用于向工作表添加注释。我想向特定单元格添加评论。有人可以帮我解决这个问题吗?