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.
我是vba的新手。我想在 Excel 中删除功能区、工作簿选项卡和 ColumnRow 标题。我可以使用这行代码删除功能区。
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <ribbon startFromScratch="true"> </ribbon> </customUI>
同样,我想删除 Excel 的电子表格和工作簿选项卡的 RowColumn 标题。希望有人可以帮助我。谢谢。
这可能无法满足您的要求,但这是一个起点。使用 CustomUI xml 代码中的 onLoad 回调来运行隐藏标题的宏: XML 文件:
<customUI onLoad="uiLoad" xmlns="...">
VBA宏:
Sub uiLoad() ActiveWindow.DisplayHeadings = False End Sub