ShowPage Property

ShowPage shows or hides the page representation rectangle. It has a Boolean value. If this value is 'True', the outline of the page in the plot window is shown. If the value is 'False, the outline of the page is hidden'.

Syntax

object.ShowPage

object. ShowPage = Show

Parameter

Type

Description

Show

Boolean

required

Example 1

This example demonstrates how to return whether or not the page outline is displayed.

Debug.Print PlotWindow.ShowPage

Example 2

This example demonstrates how to hide the page outline.

PlotWindow.ShowPage = False

Example 3

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

Used by: PlotWindow object