Interface IPrstGeomShapes
public interface IPrstGeomShapes
Properties
Count
int Count { get; }
Property Value
this[PrstGeomShapeType]
IPrstGeomShape[] this[PrstGeomShapeType shapeType] { get; }
Parameters
shapeType
PrstGeomShapeType
Property Value
this[int]
Returns single item from the collection.
IPrstGeomShape this[int index] { get; }
Parameters
index
intItem's index to get.
Property Value
- IPrstGeomShape
Single item from the collection.
this[string]
IPrstGeomShape this[string name] { get; }
Parameters
name
string
Property Value
Methods
AddNotPrimitiveShape(int, int, int, int)
IGeomPathShape AddNotPrimitiveShape(int row, int column, int width, int height)
Parameters
Returns
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
intOne-based row index of the top-left corner of the new item.
column
intOne-based column index of the top-left corner of the new item.
height
intHeight in pixels of the new item.
width
intWidth in pixels of the new item.
shapeType
PrstGeomShapeType
Returns
- IPrstGeomShape
Newly added item.