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