Propriedade ChartSheet.DepthPercent

Obtém ou define a profundidade de um gráfico 3D como uma porcentagem da Microsoft.Office.Tools.Excel.ChartSheet largura.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (em Microsoft.Office.Tools.Excel.dll)

Sintaxe

'Declaração
Property DepthPercent As Integer
    Get
    Set
int DepthPercent { get; set; }

Valor de propriedade

Tipo: System.Int32
A profundidade de um gráfico 3D como uma porcentagem da Microsoft.Office.Tools.Excel.ChartSheet largura (entre 20 e 2.000 por cento)

Exemplos

O seguinte exemplo de código usa a DepthPercent a propriedade para definir a intensidade da parte 3D do atual Microsoft.Office.Tools.Excel.ChartSheet a 75 por cento da largura da Microsoft.Office.Tools.Excel.ChartSheet.

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;
}

Segurança do .NET Framework

Consulte também

Referência

ChartSheet Interface

Namespace Microsoft.Office.Tools.Excel