Propriedade ChartSheet.Perspective

Obtém ou define a perspectiva para o 3D Microsoft.Office.Tools.Excel.ChartSheet.

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

Sintaxe

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

Valor de propriedade

Tipo: System.Int32
A perspectiva para o modo de exibição do gráfico 3D.Deve estar entre 0 e 100.

Comentários

Esta propriedade é ignorada se a RightAngleAxes é a propriedade true.

Exemplos

O seguinte exemplo de código usa a Perspective a propriedade para definir a perspectiva de exibição do atual Microsoft.Office.Tools.Excel.ChartSheet para 45 graus. O exemplo define o RightAngleAxes propriedade para false antes de definir o Perspective propriedade.

Private Sub AdjustPerspective()
    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.RightAngleAxes = False
    Me.Perspective = 45
End Sub
private void AdjustPerspective()
{
    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.RightAngleAxes = false;
    this.Perspective = 45;
}

Segurança do .NET Framework

Consulte também

Referência

ChartSheet Interface

Namespace Microsoft.Office.Tools.Excel