Skip to content

Latest commit

 

History

History
63 lines (38 loc) · 1.7 KB

Visio.Page.LayoutChangeDirection.md

File metadata and controls

63 lines (38 loc) · 1.7 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Page.LayoutChangeDirection method (Visio)
vis_sdr.chm10962145
vis_sdr.chm10962145
Visio.Page.LayoutChangeDirection
f818785b-d845-34de-50d1-e68c3c09dda9
06/08/2017
medium

Page.LayoutChangeDirection method (Visio)

Revises the layout of a set of connected shapes on the page, by rotating or flipping a connected diagram without rotating or flipping the individual shapes.

Syntax

expression. LayoutChangeDirection( _Direction_ )

expression A variable that represents a Page object.

Parameters

Name Required/Optional Data type Description
Direction Required VisLayoutDirection The action to take. See Remarks for possible values.

Return value

Nothing

Remarks

The Direction parameter must be one of the following VisLayoutDirection constants.

Constant Value Description
visLayoutDirRotateRight 0 Rotates the diagram 90 degrees clockwise.
visLayoutDirRotateLeft 1 Rotates the diagram 90 degrees counterclockwise.
visLayoutDirFlipVert 2 Flips the diagram vertically.
visLayoutDirFlipHorz 3 Flips the diagram horizontally.

Example

The following Microsoft Visual Basic for Applications (VBA) macro shows how to use the LayoutChangeDirection method to flip connected shapes on the active page vertically, without flipping the individual shapes.

Public Sub PageLayoutChangeDirection_Example()
   ActivePage.LayoutChangeDirection (visLayoutDirFlipVert)
End Sub

[!includeSupport and feedback]