ChartSheetBase.Shapes Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a Shapes object that represents all the shapes on the ChartSheetBase.
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 ChartSheetBase.
Examples
The following code example uses the Shapes property to draw a doughnut shape on the current Microsoft.Office.Tools.Excel.ChartSheetBase.
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