使用 JExcelApi 检测单元格中的删除线文本

发布于 2024-08-16 19:35:05 字数 293 浏览 4 评论 0原文

我需要检测单元格内的文本是否被删除。我正在使用这个:

Cell cc = sheet.getCell("B1");
CellFormat format = cc.getCellFormat();
System.out.println(format.getFont().isStruckout());

但我记得我在某处读到 CellFormat 已被弃用,应该使用 CellFeatures 代替。如何使用 CellFeatures 找出文本是否被删除?

I need to detect whether the text within a cell is struck out or not. I'm using this:

Cell cc = sheet.getCell("B1");
CellFormat format = cc.getCellFormat();
System.out.println(format.getFont().isStruckout());

but I remember I read somewhere that CellFormat is deprecated and CellFeatures should be used instead. How could one find out whether a text is struck out using CellFeatures?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱人如己 2024-08-23 19:35:05

不知怎的,我不认为这是真的(但引用你的来源),因为 CellFormat 和 CellFeatures 实际上没有任何共同点。

也许您认为 jxl.CellFormat 已被弃用,而有利于 jxl.format.CellFormat?

Somehow I don't think that's true (but cite your source), as CellFormat and CellFeatures don't really have anything in common.

Maybe you were thinking of jxl.CellFormat is deprecated in favor of jxl.format.CellFormat?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文