Class ShapeCollection
Contents
[
Hide
]ShapeCollection class
Represents all the shape in a worksheet/chart.
public class ShapeCollection : CollectionBase<Shape>
Properties
| Name | Description |
|---|---|
| Capacity { get; set; } | |
| Count { get; } | |
| Item { get; } | Gets the Shape object at the specific index in the list. (2 indexers) |
| Item { get; set; } |
Methods
| Name | Description |
|---|---|
| AddActiveXControl(ControlType, int, int, int, int, int, int) | Creates an Activex Control. |
| AddArc(int, int, int, int, int, int) | Adds a ArcShape to the worksheet. |
| AddAutoShape(AutoShapeType, int, int, int, int, int, int) | Adds a AutoShape to the worksheet. |
| AddAutoShapeInChart(AutoShapeType, int, int, int, int) | Adds a AutoShape to the chart. |
| AddButton(int, int, int, int, int, int) | Adds a Button to the worksheet. |
| AddCheckBox(int, int, int, int, int, int) | Adds a checkbox to the worksheet. |
| AddComboBox(int, int, int, int, int, int) | Adds a ComboBox to the worksheet. |
| AddCopy(Shape, int, int, int, int) | Adds and copy a shape to the worksheet. |
| AddEquation(int, int, int, int, int, int) | Add an equation object to the worksheet. |
| AddFreeFloatingShape(MsoDrawingType, int, int, int, int, byte[], bool) | Adds a free floating shape to the worksheet.Only applies for line/image shape. |
| AddFreeform(int, int, int, int, int, int, ShapePath[]) | Adds a freeform shape to the worksheet. |
| AddGroupBox(int, int, int, int, int, int) | Adds a GroupBox to the worksheet. |
| AddIcons(int, int, int, int, int, int, byte[], byte[]) | Adds svg image. |
| AddLabel(int, int, int, int, int, int) | Adds a Label to the worksheet. |
| AddLabelInChart(int, int, int, int) | Adds a label to the chart. |
| AddLine(int, int, int, int, int, int) | Adds a LineShape to the worksheet. |
| AddLinkedPicture(int, int, int, int, string) | Add a linked picture. |
| AddListBox(int, int, int, int, int, int) | Adds a ListBox to the worksheet. |
| AddOleObject(int, int, int, int, int, int, byte[]) | Adds an OleObject. |
| AddOleObjectWithLinkedImage(int, int, int, int, string) | Add a linked picture. |
| AddOval(int, int, int, int, int, int) | Adds a Oval to the worksheet. |
| AddPicture(int, int, int, int, Stream) | Adds a picture to the collection. |
| AddPicture(int, int, Stream, int, int) | Adds a picture to the collection. |
| AddPictureInChart(int, int, Stream, int, int) | Adds a picture to the chart. |
| AddRadioButton(int, int, int, int, int, int) | Adds a RadioButton to the worksheet. |
| AddRectangle(int, int, int, int, int, int) | Adds a RectangleShape to the worksheet. |
| AddScrollBar(int, int, int, int, int, int) | Adds a ScrollBar to the worksheet. |
| AddShape(MsoDrawingType, int, int, int, int, int, int) | Adds a Shape to the worksheet. |
| AddShapeInChart(MsoDrawingType, PlacementType, int, int, int, int) | Add a shape to chart .All unit is 1/4000 of chart area. |
| AddShapeInChart(MsoDrawingType, PlacementType, int, int, int, int, byte[]) | Add a shape to chart .All unit is 1/4000 of chart area. |
| AddShapeInChartByScale(MsoDrawingType, PlacementType, double, double, double, double) | Add a shape to chart. All unit is percent scale of chart area. |
| AddShapeInChartByScale(MsoDrawingType, PlacementType, double, double, double, double, byte[]) | Add a shape to chart .All unit is 1/4000 of chart area. |
| AddSignatureLine(int, int, SignatureLine) | Adds a Signature Line to the worksheet. |
| AddSpinner(int, int, int, int, int, int) | Adds a Spinner to the worksheet. |
| AddSvg(int, int, int, int, int, int, byte[], byte[]) | Adds svg image. |
| AddTextBox(int, int, int, int, int, int) | Adds a text box to the worksheet. |
| AddTextBoxInChart(int, int, int, int) | Adds a textbox to the chart. |
| AddTextEffect(MsoPresetTextEffect, string, string, int, bool, bool, int, int, int, int, int, int) | Inserts a WordArt object. |
| AddTextEffectInChart(MsoPresetTextEffect, string, string, int, bool, bool, int, int, int, int) | Inserts a WordArt object to the chart |
| AddWordArt(PresetWordArtStyle, string, int, int, int, int, int, int) | Adds preset WordArt since Excel 2007.s |
| BinarySearch(Shape) | |
| BinarySearch(Shape, IComparer<Shape>) | |
| BinarySearch(int, int, Shape, IComparer<Shape>) | |
| Clear() | Clear all shapes in the worksheet. (2 methods) |
| Contains(Shape) | |
| CopyCommentsInRange(ShapeCollection, CellArea, int, int) | Copy all comments in the range. |
| CopyInRange(ShapeCollection, CellArea, int, int, bool) | Copy shapes in the range to destination range. |
| CopyTo(Shape[]) | |
| CopyTo(Shape[], int) | |
| CopyTo(int, Shape[], int, int) | |
| DeleteInRange(CellArea) | Delete shapes in the range.Comment shapes will not be deleted. |
| DeleteShape(Shape) | Delete a shape. If the shape is in the group or is a comment shape, it will not be deleted. |
| Exists(Predicate<Shape>) | |
| Find(Predicate<Shape>) | |
| FindAll(Predicate<Shape>) | |
| FindIndex(Predicate<Shape>) | |
| FindIndex(int, Predicate<Shape>) | |
| FindIndex(int, int, Predicate<Shape>) | |
| FindLast(Predicate<Shape>) | |
| FindLastIndex(Predicate<Shape>) | |
| FindLastIndex(int, Predicate<Shape>) | |
| FindLastIndex(int, int, Predicate<Shape>) | |
| GetEnumerator() | |
| Group(Shape[]) | Group the shapes. |
| IndexOf(Shape) | |
| IndexOf(Shape, int) | |
| IndexOf(Shape, int, int) | |
| LastIndexOf(Shape) | |
| LastIndexOf(Shape, int) | |
| LastIndexOf(Shape, int, int) | |
| Remove(Shape) | Remove the shape. |
| RemoveAt(int) | Remove the shape. (2 methods) |
| Ungroup(GroupShape) | Ungroups the shape items. |
| UpdateSelectedValue() | Update the selected value by the value of the linked cell or range of the shape. |
Examples
namespace AsposeCellsExamples
{
using Aspose.Cells;
using Aspose.Cells.Drawing;
using System;
using System.IO;
public class ShapeCollectionDemo
{
public static void ShapeCollectionExample()
{
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Get the first worksheet
Worksheet worksheet = workbook.Worksheets[0];
// Get the ShapeCollection from the worksheet
ShapeCollection shapes = worksheet.Shapes;
// Add a rectangle shape to the worksheet
int upperLeftRow = 2;
int top = 0;
int upperLeftColumn = 2;
int left = 0;
int height = 100;
int width = 200;
shapes.AddRectangle(upperLeftRow, top, upperLeftColumn, left, height, width);
// Add a textbox to the worksheet
shapes.AddTextBox(upperLeftRow, top, upperLeftColumn + 5, left, height, width);
// Add a picture to the worksheet
using (FileStream fs = new FileStream("example.jpg", FileMode.Open, FileAccess.Read))
{
shapes.AddPicture(upperLeftRow + 7, upperLeftColumn, fs, 100, 100);
}
// Add a button to the worksheet
shapes.AddButton(upperLeftRow + 12, top, upperLeftColumn, left, height, width);
// Save the workbook
workbook.Save("ShapeCollectionExample.xlsx");
}
}
}
See Also
- class CollectionBase<T>
- class Shape
- namespace Aspose.Cells.Drawing
- assembly Aspose.Cells