Share via


TableGridlines Property

TableGridlines Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

True if table gridlines are displayed. Read/write Boolean.

expression.TableGridlines

expression   Required. An expression that returns a View object.

Example

This example displays table gridlines in the active window.

  ActiveDocument.ActiveWindow.View.TableGridlines = True

This example shows table gridlines for the panes associated with window one in the Windows collection.

  For Each myPane In Windows(1).Panes
    myPane.View.TableGridlines = True
Next myPane