ThreeDFormat オブジェクト (Publisher)
図形の 3-D の書式を表します。
注釈
傾斜した図形などの図形の一部の種類を 3-d の書式設定を適用することはできません。 ほとんどのプロパティと、このような図形に ThreeDFormat オブジェクトのメソッドは失敗します。
ThreeDFormat オブジェクトを取得するには、Shape.ThreeD プロパティを使用します。
例
次の使用例は、作業中の文書の図形 1 に適用される 3D 効果の深度、押し出し色、押し出し方向、照明方向を設定します。
Sub SetThreeDSettings()
Dim tdfTemp As ThreeDFormat
Set tdfTemp = _
ActiveDocument.Pages(1).Shapes(1).ThreeD
With tdfTemp
.Visible = True
.Depth = 50
.ExtrusionColor.RGB = RGB(255, 100, 255)
.SetExtrusionDirection _
PresetExtrusionDirection:=msoExtrusionTop
.PresetLightingDirection = msoLightingLeft
End With
End Sub
メソッド
プロパティ
- Application
- BevelBottomDepth
- BevelBottomInset
- BevelBottomType
- BevelTopDepth
- BevelTopInset
- BevelTopType
- ContourColor
- ContourWidth
- Depth
- ExtrusionColor
- ExtrusionColorType
- FieldOfView
- Parent
- Perspective
- PresetExtrusionDirection
- PresetLightingDirection
- PresetLightingSoftness
- PresetMaterial
- PresetThreeDFormat
- RotationX
- RotationY
- Visible
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。