Propriedade ChartSheet.Rotation
Obtém ou define a rotação do 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 Rotation As Object
Get
Set
Object Rotation { get; set; }
Valor de propriedade
Tipo: System.Object
A rotação do 3D Microsoft.Office.Tools.Excel.ChartSheet (a rotação da área de plotagem ao redor do eixo, em graus).O valor desta propriedade deve ser de 0 a 360, exceto para gráficos de barras 3D, onde o valor deve estar entre 0 e 44.O valor padrão é 20.
Comentários
Só se aplica a um 3D Microsoft.Office.Tools.Excel.ChartSheet.
Exemplos
O seguinte exemplo de código usa a Rotation propriedade para exibir as Microsoft.Office.Tools.Excel.ChartSheet sem rotação.
Private Sub SetRotation()
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.Rotation = 0
End Sub
private void SetRotation()
{
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.Rotation = 0;
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.