在 SpreadsheetGear 控件中隐藏列标题和行标题

发布于 2024-09-13 02:19:00 字数 107 浏览 2 评论 0原文

有没有办法隐藏 SpreadsheetGear 2010 控件中的 A、B、C 列标题和 1、2、3 行标题?我们将其用作仅显示控件,并显示这些标题给人一种数据可以编辑的印象。

谢谢。

Is there a way to hide the A,B,C column headers and 1,2,3 row headers in the SpreadsheetGear 2010 control? We are using this as a display only control and showing these headings gives the impression that the data can be edited.

Thanks.

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

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

发布评论

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

评论(2

姐不稀罕 2024-09-20 02:19:00

我找到了。它位于 WorkbookView.ActiveWorksheetWindowInfo.DisplayHeadings 中。您可以显示和隐藏此类中的多个元素,包括网格线、公式和轮廓。

凉爽的。

I found it. It is in the WorkbookView.ActiveWorksheetWindowInfo.DisplayHeadings. You can show and hide several elements from this class, including gridlines, formulas and outlines.

Cool.

你的他你的她 2024-09-20 02:19:00

我在WindowInfo下找到了它。
例如:

IWorksheet ws = wb.Worksheets[0];
ws.WindowInfo.DisplayHeadings = false;

I found it under WindowInfo.
For example:

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