GetAllImages
Returns an array with all the image objects from the slide.
Syntax
expression.GetAllImages();
expression
- A variable that represents a ApiSlide class.
Parameters
This method doesn't have any parameters.
Returns
ApiImage[]
Example
This example show how to get an array with all the image objects from the slide.
- Code
- Result
// How to get all images from the slide.
// Get all images from the slide as an array.
const presentation = Api.GetPresentation();
const slide = presentation.GetSlideByIndex(0);
slide.RemoveAllObjects();
const image = Api.CreateImage("https://api.onlyoffice.com/content/img/docbuilder/examples/coordinate_aspects.png", 60 * 36000, 35 * 36000);
slide.AddObject(image);
const allImages = slide.GetAllImages();
const type = allImages[0].GetClassType();
const fill = Api.CreateSolidFill(Api.CreateRGBColor(255, 111, 61));
const stroke = Api.CreateStroke(0, Api.CreateNoFill());
const shape = Api.CreateShape("flowChartMagneticTape", 300 * 36000, 130 * 36000, fill, stroke);
shape.SetPosition(608400, 1267200);
shape.SetSize(300 * 36000, 130 * 36000);
const docContent = shape.GetDocContent();
const paragraph = docContent.GetElement(0);
paragraph.SetJc("left");
paragraph.AddText("Class type = " + type);
slide.AddObject(shape);