2

我希望我的 xlsx 电子表格的用户编辑工作表的某些部分,但不是大部分。或者换句话说,我只想保护工作表的某些部分

我通过以下代码学习了如何使用 ruby​​XL 保护工作表:

sheetProtection = RubyXL::WorksheetProtection.new(
    password: hashedPass,
    sheet: true,
    objects: true,
    scenarios: true,
    format_cells: true,
    format_columns: true,
    insert_columns: true,
    delete_columns: true,
    insert_rows: true,
    delete_rows: true
);
wsData = workbook['data'];
wsData.sheet_protection = sheetProtection;

说,我希望用户只编辑C2:C13所述工作表的单元格范围。

我无法从 ruby​​XL 的文档中找到有关如何执行此操作的语法,也找不到如何使用该文档(请原谅我的无知)。当我单击该页面侧面的任何链接时,我不知所措,因为对我来说,似乎唯一友好的是主页。谷歌没有帮助。在上面的代码中,我不知道他们如何获得sheet_protection工作表的属性以供使用。

在我找到的最接近的线索中,我了解到可以通过单元格样式来实现单元格的“不受保护”。因此,我尝试创建一种样式并将其放入单元格中,但由于缺乏指南,该样式也被证明很困难。

在 github repo 的cell_style.rb中,我发现了一些关于ProtectionCellStyle类的东西。

unprotected = RubyXL::Protection.new(
    locked: false,
    hidden: false
);

unprotecStyle = RubyXL::CellStyle.new(
    name: 'unprotected style'
);

我在文档中找不到如何将它们放在一起,甚至在单元格上应用样式:

wsData[1][2].cell_style = unprotecStyle;
# undefined method `cell_style=' for #<RubyXL::Cell(1,2): "cell-content", datatype="str", style_index=8>

我什至不确定我是否走在正确的轨道上。请帮忙。

4

1 回答 1

1

也许你已经知道了,但这对我有用......

给定 aworksheet和 a cell,我做了:

worksheet.
  workbook.
  cell_xfs[cell.style_index || 0].
  protection = RubyXL::Protection.new(
    locked: false,
    hidden: false
  )

然后我做了:

worksheet.sheet_protection = RubyXL::WorksheetProtection.new(
  sheet:          true,
  objects:        true,
  scenarios:      true,
  format_cells:   true,
  format_columns: true,
  insert_columns: true,
  delete_columns: true,
  insert_rows:    true,
  delete_rows:    true
)

它保护了整个worksheet除了cell.

于 2019-06-10T23:03:48.650 回答