如何使用epplus& amp;保护excel中的一行数据(整行内容不是列式) C#

时间:2017-07-13 06:41:15

标签: c# epplus

worksheet.Protection.IsProtected = true; worksheet.ProtectedRanges.Add(“editable”,new ExcelAddress(2,1,RowCount1,3));

但我必须保护可编辑字段中的少量数据行

1 个答案:

答案 0 :(得分:0)

尝试使用ExcelRange的Style.Locked属性

// Protect the worksheet
ws.Protection.IsProtected = true; // NOTE: This locks all cells by default

// Make all cells editable
ws.Cells.Style.Locked = false;

// Lock just the first row
ws.Row(1).Style.Locked = true;

// Lock a range of rows
ws.Cells["4:6"].Style.Locked = true;