Perspective 属性

       

决定延伸是否显示为透视图。可读写。MsoTriState 类型。

示例

本示例将 myDocument 中第一个形状延伸的深度设置为 100 磅,并且指定该延伸是平行或正射投影。

Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes(1).ThreeD
    .Visible = True
    .Depth = 100
    .Perspective = msoFalse
End With