GetLayout

GetLayout(nPos) → { ApiLayout | null }

Returns a layout of the specified slide master by its position.

Parameters:

Name Type Description
nPos number

Layout position.

Returns:

Type
ApiLayout | null

Example

Copy code
builder.CreateFile("pptx");
var oPresentation = Api.GetPresentation();
var oSlide = oPresentation.GetSlideByIndex(0);
var oMaster = oPresentation.GetMaster(0);
var oLayout = Api.CreateLayout();
var oFill = Api.CreateSolidFill(Api.CreateRGBColor(255, 111, 61));
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
var oShape = Api.CreateShape("flowChartMagneticTape", 300 * 36000, 130 * 36000, oFill, oStroke);
oShape.SetPosition(608400, 1267200);
oShape.SetSize(300 * 36000, 130 * 36000);
oLayout.AddObject(oShape);
oMaster.AddLayout(0, oLayout);
oSlide.ApplyLayout(oMaster.GetLayout(0));
builder.SaveFile("pptx", "GetLayout.pptx");
builder.CloseFile();

Resulting document