ShowGrid Property

ShowGrid shows or hides the drawing grid. Returns a Boolean. If the value is 'True', the page grid is shown. If the value is 'False', the page grid is not shown.

Syntax

object.ShowGrid

object. ShowGrid = Show

Parameter

Type

Description

Show

Boolean

required

Example 1

This example demonstrates how to return whether or not the drawing grid of a plot window is visible.

Debug.Print PlotWindow.ShowGrid

Example 2

This example demonstrates how to display the drawing grid of a plot window.

PlotWindow.ShowGrid = True

Example 3

This script displays all the methods and properties in the PlotWindow object.

Used by: PlotWindow object