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.
我在尝试从代码 (C#) 中检索代码模块的名称属性时遇到问题。当我 alt+f11 我的 excel 文件时,我有以下内容: Chart1 Sheet2 Sheet3 ThisWorkbook
显示这些属性时,它们具有以下属性(名称): Chart1 名称:通过率
我想要做的是从 C# 访问属性“名称”。这可能吗?我似乎只能检索“(名称)”。使用互操作 11.0.0.0 (office 2003)
这将为您提供工作表的名称
MessageBox.Show(ws.Name) ;
这将为您提供工作表的代码名称
MessageBox.Show(ws.CodeName) ;
注意:ws上面是您的工作表对象。
ws