众所周知,在Gembox电子表格中,您可以为单元格设置边框(使用C#语言),例如:
worksheet.Cells[row, 2].Style.Borders.SetBorders(MultipleBorders.All, Color.FromArgb(252, 1, 1), LineStyle.Thin);
这是一种检查单元格是否包含边框(底部或顶部边框)的方法?
更新资料
我找到了具有Gembox支持的解决方案:
var hasLeftBorder = cell.Style.Borders[IndividualBorder.Left].LineStyle != LineStyle.None;
最佳答案
看看on the Gembox Spreadsheet documentation page for the CellBorder
class。 CellBorder
类上有2个属性:LineColor
和LineStyle
-使用LineStyle
的getter属性并将其与LineStyle
enumeration进行比较
关于c# - Gembox电子表格C#:这是一种检测单元格是否具有边框的方法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25958480/