canHaveImage property
ShapeBase.canHaveImage property
Returns true
if the shape type allows the shape to have an image.
get canHaveImage(): boolean
Remarks
Although Microsoft Word has a special shape type for images, it appears that in Microsoft Word documents any shape
except a group shape can have an image, therefore this property returns true
for all shapes except GroupShape.
Examples
Shows how to insert and rotate an image.
let doc = new aw.Document();
let builder = new aw.DocumentBuilder(doc);
// Insert a shape with an image.
let shape = builder.insertImage(base.imageDir + "Logo.jpg");
expect(shape.canHaveImage).toEqual(true);
expect(shape.hasImage).toEqual(true);
// Rotate the image 45 degrees clockwise.
shape.rotation = 45;
doc.save(base.artifactsDir + "Shape.Rotate.docx");
See Also
- module Aspose.Words.Drawing
- class ShapeBase