如何使用电子表格 XML 在打开 Excel 时选择特定工作表的可见性
我从代码逻辑获取电子表格 xml(Flex Grids 到电子表格 xml)。 我在该电子表格 xml 中有 3 个工作表(A、B、C)。 我正在 Excel 中打开此电子表格 xml。 我想在 Excel 中打开 Spreadhseet xml 时查看工作表 B。
是否有任何标签/代码需要添加,以便工作表 B 在初始时可见? 我可以在代码逻辑中添加该代码
谢谢......Atul
I am getting spreadsheet xml from a code logic (Flex Grids to spreadsheet xml).
I have 3 worksheets (A, B, C) in that spreadsheet xml.
I am opening this spreadsheet xml in Excel.
I want to view worksheet B when I am opening the spreadhseet xml in Excel.
Is there any tag/code, I need to add so that worksheet B will be visible at initial?
I can add that code in code logic
Thanks ... Atul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
XMLSpreadsheet
的Namespace
部分添加
标记。例如
1
,其中1
是电子表格Excel的第二个工作表。Add
<ActiveSheet>
tag inNamespace
section ofXMLSpreadsheet
.e.g.
<ActiveSheet>1</ActiveSheet>
, where1
is the second worksheet of the spreadsheet excel.