Excel VSTO add-in: Can I disable Excel headers in code?

I am creating a Visual Studio Add-in Add-in component for Excel (2007+). I have several sheets in my modified VSTO book, in which I want to disable headers in the code. (what can you do in Excel> Show> Headers "). Does anyone know how to do this?

+3
source share
1 answer

Vb.net

Me.Application.ActiveWindow.DisplayHeadings = False

WITH#

this.Application.ActiveWindow.DisplayHeadings = false;
+3
source

All Articles