Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.24 KB

Publisher.ThreeDFormat.Perspective.md

File metadata and controls

47 lines (31 loc) · 1.24 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ThreeDFormat.Perspective property (Publisher)
vbapb10.chm3801347
vbapb10.chm3801347
Publisher.ThreeDFormat.Perspective
5a85f7fa-2c72-e9b0-75f0-e6d6680ecd99
06/15/2019
medium

ThreeDFormat.Perspective property (Publisher)

Returns msoTrue if the extrusion appears in perspective—that is, if the walls of the extrusion narrow toward a vanishing point.

Returns msoFalse if the extrusion is a parallel, or orthographic, projection—that is, if the walls don't narrow toward a vanishing point. Read/write.

Syntax

expression.Perspective

expression A variable that represents a ThreeDFormat object.

Return value

MsoTriState

Example

This example sets the extrusion depth for shape one on the first page to 100 points and specifies that the extrusion be parallel, or orthographic. For this example to work, the specified shape must be a 3D shape.

Sub ChangePerspective() 
 With ActiveDocument.Pages(1).Shapes(1).ThreeD 
 .Visible = True 
 .Depth = 100 
 .Perspective = msoFalse 
 End With 
End Sub

[!includeSupport and feedback]