insert_shape method

insert_shape(shape_type, width, height)

Inserts inline shape with specified type and size.

def insert_shape(self, shape_type: aspose.words.drawing.ShapeType, width: float, height: float):
    ...
ParameterTypeDescription
shape_typeShapeTypeThe shape type to insert into the document.
widthfloatThe width of the shape in points.
heightfloatThe height of the shape in points.

Returns

The shape node that was inserted.

insert_shape(shape_type, horz_pos, left, vert_pos, top, width, height, wrap_type)

Inserts free-floating shape with specified position, size and text wrap type.

def insert_shape(self, shape_type: aspose.words.drawing.ShapeType, horz_pos: aspose.words.drawing.RelativeHorizontalPosition, left: float, vert_pos: aspose.words.drawing.RelativeVerticalPosition, top: float, width: float, height: float, wrap_type: aspose.words.drawing.WrapType):
    ...
ParameterTypeDescription
shape_typeShapeTypeThe shape type to insert into the document
horz_posRelativeHorizontalPositionSpecifies where the horizontal distance to the shape is measured from.
leftfloatDistance in points from the origin to the left side of the shape.
vert_posRelativeVerticalPositionSpecifies where the vertical distance to the shape is measured from.
topfloatDistance in points from the origin to the top side of the shape.
widthfloatThe width of the shape in points.
heightfloatThe width of the shape in points.
wrap_typeWrapTypeSpecifies how to wrap text around the shape.

Returns

The shape node that was inserted.

Examples

Shows how to insert DML shapes into a document.

doc = aw.Document()
builder = aw.DocumentBuilder(doc)
# Below are two wrapping types that shapes may have.
# 1 -  Floating:
builder.insert_shape(aw.drawing.ShapeType.TOP_CORNERS_ROUNDED, aw.drawing.RelativeHorizontalPosition.PAGE, 100, aw.drawing.RelativeVerticalPosition.PAGE, 100, 50, 50, aw.drawing.WrapType.NONE)
# 2 -  Inline:
builder.insert_shape(aw.drawing.ShapeType.DIAGONAL_CORNERS_ROUNDED, 50, 50)
# If you need to create "non-primitive" shapes, such as SingleCornerSnipped, TopCornersSnipped, DiagonalCornersSnipped,
# TopCornersOneRoundedOneSnipped, SingleCornerRounded, TopCornersRounded, or DiagonalCornersRounded,
# then save the document with "Strict" or "Transitional" compliance, which allows saving shape as DML.
save_options = aw.saving.OoxmlSaveOptions(aw.SaveFormat.DOCX)
save_options.compliance = aw.saving.OoxmlCompliance.ISO29500_2008_TRANSITIONAL
doc.save(ARTIFACTS_DIR + 'Shape.shape_insertion.docx', save_options)

See Also