Table of Contents

Interface IPrstGeomShapes

Namespace
Spire.Xls.Core
Assembly
Spire.XLS.dll
public interface IPrstGeomShapes

Properties

Count

int Count { get; }

Property Value

int

this[PrstGeomShapeType]

IPrstGeomShape[] this[PrstGeomShapeType shapeType] { get; }

Parameters

shapeType PrstGeomShapeType

Property Value

IPrstGeomShape[]

this[int]

Returns single item from the collection.

IPrstGeomShape this[int index] { get; }

Parameters

index int

Item's index to get.

Property Value

IPrstGeomShape

Single item from the collection.

this[string]

IPrstGeomShape this[string name] { get; }

Parameters

name string

Property Value

IPrstGeomShape

Methods

AddNotPrimitiveShape(int, int, int, int)

IGeomPathShape AddNotPrimitiveShape(int row, int column, int width, int height)

Parameters

row int
column int
width int
height int

Returns

IGeomPathShape

AddPrstGeomShape(int, int, int, int, PrstGeomShapeType)

Adds new item to the collection.

IPrstGeomShape AddPrstGeomShape(int row, int column, int height, int width, PrstGeomShapeType shapeType)

Parameters

row int

One-based row index of the top-left corner of the new item.

column int

One-based column index of the top-left corner of the new item.

height int

Height in pixels of the new item.

width int

Width in pixels of the new item.

shapeType PrstGeomShapeType

Returns

IPrstGeomShape

Newly added item.