Condividi tramite


Proprietà ChartSheet.Rotation

Ottiene o imposta la rotazione dell'oggetto Microsoft.Office.Tools.Excel.ChartSheet 3D.

Spazio dei nomi:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)

Sintassi

'Dichiarazione
Property Rotation As Object
    Get
    Set
Object Rotation { get; set; }

Valore proprietà

Tipo: System.Object
Rotazione dell'oggetto Microsoft.Office.Tools.Excel.ChartSheet 3D, ovvero la rotazione, in gradi, dell'area del tracciato intorno all'asse Z.Il valore di questa proprietà deve essere compreso tra 0 e 360, ad eccezione dei grafici a barre 3D per i quali il valore deve essere compreso tra 0 e 44.Il valore predefinito è 20.

Note

Si applica solo a un oggetto Microsoft.Office.Tools.Excel.ChartSheet 3D.

Esempi

Nell'esempio di codice riportato di seguito viene utilizzata la proprietà Rotation per visualizzare l'oggetto Microsoft.Office.Tools.Excel.ChartSheet corrente senza alcuna rotazione.

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

Sicurezza di .NET Framework

Vedere anche

Riferimenti

ChartSheet Interfaccia

Spazio dei nomi Microsoft.Office.Tools.Excel