Chart.DepthPercent property (Word)

Returns or sets the depth of a 3D chart as a percentage of the chart width (between 20 and 2000 percent). Read/write Long.

Syntax

expression.DepthPercent

expression A variable that represents a Chart object.

Remarks

This property applies only to 3D charts.

Example

The following example sets the depth of the first chart in the active document to be 50 percent of its width. You should run this example on a 3D chart.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 Chart.DepthPercent = 50 
 End If 
End With 

See also

Chart Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.