AddAutoShape()

IShapeCollection::AddAutoShape(ShapeType, float, float, float, float) method

Creates a new AutoShape, tunes it from default template and adds it to the end of the collection.

virtual System::SharedPtr<IAutoShape> Aspose::Slides::IShapeCollection::AddAutoShape(ShapeType shapeType, float x, float y, float width, float height)=0

Arguments

ParameterTypeDescription
shapeTypeShapeTypeThe ShapeType of shape.
xfloatThe X-coordinate for a left side of shape’s frame.
yfloatThe Y-coordinate for a top side of shape’s frame.
widthfloatThe width of shape’s frame.
heightfloatThe height of shape’s frame.

Return Value

Created AutoShape object.

IShapeCollection::AddAutoShape(ShapeType, float, float, float, float, bool) method

Creates a new AutoShape and adds it to the end of the collection.

virtual System::SharedPtr<IAutoShape> Aspose::Slides::IShapeCollection::AddAutoShape(ShapeType shapeType, float x, float y, float width, float height, bool createFromTemplate)=0

Arguments

ParameterTypeDescription
shapeTypeShapeTypeThe ShapeType of shape.
xfloatThe X-coordinate for a left side of shape’s frame.
yfloatThe Y-coordinate for a top side of shape’s frame.
widthfloatThe width of shape’s frame.
heightfloatThe height of shape’s frame.
createFromTemplateboolIf true then new shape will be tuned from default template. Not empty name, simple style, text centered will be assined to the new shape. If false then all values of the properties of the new shape will have default values.

Return Value

Created AutoShape object.

See Also