Application.BoxZoom Method (Project)

Zooms in to or out from the Network Diagram.

Syntax

expression .BoxZoom(Percent, Entire)

expression A variable that represents an Application object.

Parameters

Name

Required/Optional

Data Type

Description

Percent

Optional

Variant

The percentage—between 25 and 400—to reduce or enlarge the Network Diagram. If Entire is True, Percent is ignored.

Entire

Optional

Boolean

True if the Network Diagram resizes to fit the entire project onto the screen, within the same limits described for Percent. The default value is False.

Return Value

Boolean

Example

The following example attempts to fit all tasks onto the screen. It assumes the Network Diagram is the active view.

Sub Display() 
 BoxZoom Entire:=True 
End Sub