Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个包含许多现有列分组的工作表。我想删除所有这些组。以下代码不起作用:
cells.UngroupColumns(cells.MinColumn, cells.MaxDataColumn + 1);
有什么建议么?
This works:
cells.UngroupColumns(cells.MinColumn, cells.MaxColumn + 1);