excel如何使“”符号位于轮廓的左侧

发布于 2024-10-29 03:34:59 字数 214 浏览 1 评论 0原文

我正在使用 Microsoft.Office.Interop.Excel.dll 中的 range.group 方法 它可以将列或行分组为 Excel 文档中的大纲级别; 但问题是如何将"+"符号设置在左侧,而不是根据最后一列或最后一行将其默认位置设置在右侧。

使用什么方法来控制方向以及如何使用该方法。最好能举个例子。

I am using range.group method from the Microsoft.Office.Interop.Excel.dll
and it works to group up the columns or rows as the outline level in the Excel document;
but there comes the question of how to set the "+"symbol at the left side, but not it's default position at the right side according to the last columns or rows.

What method is used for controlling the direction and how to use this method. It would be best if that's an example,.

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

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

发布评论

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

评论(2

和影子一齐双人舞 2024-11-05 03:34:59

在 Excel 中:数据/组和大纲/设置...

在代码中:

range.Group(oMissing, oMissing, oMissing, oMissing);

//for rows
worksheet.Outline.SummaryRow = Excel.XlSummaryRow.xlSummaryAbove;

//for columns
worksheet.Outline.SummaryColumn = Excel.XlSummaryColumn.xlSummaryOnLeft;

In excel: Data/Group and Outline/Settings...

In code:

range.Group(oMissing, oMissing, oMissing, oMissing);

//for rows
worksheet.Outline.SummaryRow = Excel.XlSummaryRow.xlSummaryAbove;

//for columns
worksheet.Outline.SummaryColumn = Excel.XlSummaryColumn.xlSummaryOnLeft;
甲如呢乙后呢 2024-11-05 03:34:59

要在不使用 VBA 的情况下将其应用到左侧:

在 Excel 中:数据 ->大纲。单击功能区右下角的箭头(箭头指向右侧。)

它将打开大纲设置。

取消勾选“详细信息右侧的摘要栏”。
单击“应用样式”。

To apply it on the left without using VBA:

In Excel: Data-> Outline. Click on the arrow on the bottom right corner of the ribbon (The arrow is pointing down right.)

It will open the Outline Settings.

Untick "Summary column on the right on the right of detail."
Click Apply Styles.

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