ChartSheet.Shapes Property (2007 System)
Gets a Shapes object that represents all the shapes on the Microsoft.Office.Tools.Excel.ChartSheet.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property Shapes As Shapes
'Usage
Dim instance As ChartSheet
Dim value As Shapes
value = instance.Shapes
[BrowsableAttribute(false)]
public Shapes Shapes { get; }
[BrowsableAttribute(false)]
public:
property Shapes^ Shapes {
Shapes^ get ();
}
public function get Shapes () : Shapes
Property Value
Type: Shapes
A Shapes object that represents all the shapes on the Microsoft.Office.Tools.Excel.ChartSheet.
Examples
The following code example uses the Shapes property to draw a doughnut shape on the current Microsoft.Office.Tools.Excel.ChartSheet.
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 Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.