ChartSheet.DepthPercent 属性

获取或设置三维图表的深度(以 Microsoft.Office.Tools.Excel.ChartSheet 宽度的百分比形式表示)。

命名空间:  Microsoft.Office.Tools.Excel
程序集:  Microsoft.Office.Tools.Excel(在 Microsoft.Office.Tools.Excel.dll 中)

语法

声明
Property DepthPercent As Integer
    Get
    Set
int DepthPercent { get; set; }

属性值

类型:System.Int32
三维图表的深度,以 Microsoft.Office.Tools.Excel.ChartSheet 宽度的百分比形式(介于 20% 到 2000% 之间)表示

示例

下面的代码示例使用 DepthPercent 属性将当前 Microsoft.Office.Tools.Excel.ChartSheet 的三维部分的深度设置为 Microsoft.Office.Tools.Excel.ChartSheet 的宽度的 75%。

Private Sub AdjustDepth()
    Globals.Sheet1.Range("A1", "A5").Value2 = 22
    Globals.Sheet1.Range("B1", "B5").Value2 = 55

    Me.SetSourceData(Globals.Sheet1.Range("A1", "B5"), _
        Excel.XlRowCol.xlColumns)
    Me.ChartType = Excel.XlChartType.xl3DBarClustered
    Me.DepthPercent = 75
End Sub
private void AdjustDepth()
{
    Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
    Globals.Sheet1.Range["B1", "B5"].Value2 = 55;

    this.SetSourceData(Globals.Sheet1.Range["A1", "B5"],
        Excel.XlRowCol.xlColumns);
    this.ChartType = Excel.XlChartType.xl3DBarClustered;
    this.DepthPercent = 75;
}

.NET Framework 安全性

请参见

参考

ChartSheet 接口

Microsoft.Office.Tools.Excel 命名空间