ChartSheet.Shapes Property

Definition

Gets a Shapes object that represents all the shapes on the ChartSheet.

public:
 property Microsoft::Office::Interop::Excel::Shapes ^ Shapes { Microsoft::Office::Interop::Excel::Shapes ^ get(); };
public Microsoft.Office.Interop.Excel.Shapes Shapes { get; }
member this.Shapes : Microsoft.Office.Interop.Excel.Shapes
Public ReadOnly Property Shapes As Shapes

Property Value

A Shapes object that represents all the shapes on the ChartSheet.

Examples

The following code example uses the Shapes property to draw a doughnut shape on the current Microsoft.Office.Tools.Excel.ChartSheet.

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

Applies to