ThreeDFormat.PresetThreeDFormat 属性 (Excel)

返回预置的延伸格式。 每个预设的延伸格式都包含一组各种延伸属性的预设值。 只读 MsoPresetThreeDFormat

语法

表达式PresetThreeDFormat

表达 一个代表 ThreeDFormat 对象的变量。

备注

如果延伸自定义格式,而不是预设的格式的则此属性会返回 msoPresetThreeDFormatMixed

此属性是只读的。 若要设置预置的延伸格式,使用 SetThreeDFormat 方法。

示例

在以下示例中,如果 myDocument 中的第一个形状最初使用自定义的延伸格式,则将该形状的延伸格式设置为三维样式 12。

Set myDocument = Worksheets(1) 
With myDocument.Shapes(1).ThreeD 
 If .PresetThreeDFormat = msoPresetThreeDFormatMixed Then 
 .SetThreeDFormat msoThreeD12 
 End If 
End With

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。