Freigeben über


ChartSheet.Shapes-Eigenschaft

Ruft ein Shapes-Objekt ab, das alle Formen im Microsoft.Office.Tools.Excel.ChartSheet darstellt.

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

Syntax

'Declaration
ReadOnly Property Shapes As Shapes
    Get
Shapes Shapes { get; }

Eigenschaftswert

Typ: Microsoft.Office.Interop.Excel.Shapes
Ein Shapes-Objekt, das alle Formen im Microsoft.Office.Tools.Excel.ChartSheet darstellt.

Beispiele

Das folgende Codebeispiel verwendet die Shapes-Eigenschaft, um eine Ringform auf dem aktuellen Microsoft.Office.Tools.Excel.ChartSheet zu zeichnen.

Private Sub AddDonutToChartSheet()
    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.Shapes.AddShape(Office.MsoAutoShapeType.msoShapeDonut, _
        50, 50, 50, 50)
End Sub
private void AddDonutToChartSheet()
{
    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.Shapes.AddShape(Office.MsoAutoShapeType.msoShapeDonut,
        50, 50, 50, 50);
}

.NET Framework-Sicherheit

Siehe auch

Referenz

ChartSheet Schnittstelle

Microsoft.Office.Tools.Excel-Namespace