tags:

views:

526

answers:

2

Any idea where the setting is hiding for turning gridlines off while using excel 2003 from interop?

+1  A: 

DisplayGridlines is a method on an Excel Window object. For example:

ActiveWindow.DisplayGridlines = true
Jon Fournier
That got it, thanks.
stimms
A: 

ActiveWorkbook.Windows(1).DisplayGridlines = True 'OR False

shahkalpesh