Class representing a placeholder.
Name | Description |
GetClassType | Returns the type of the ApiPlaceholder class. |
SetType | Sets the placeholder type. |
builder.CreateFile("pptx"); var oPresentation = Api.GetPresentation(); var oSlide = oPresentation.GetSlideByIndex(0); oSlide.RemoveAllObjects(); 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); var oPlaceholder = Api.CreatePlaceholder("picture"); oShape.SetPlaceholder(oPlaceholder); var sType = oPlaceholder.GetClassType(); var oDocContent = oShape.GetDocContent(); var oParagraph = oDocContent.GetElement(0); oParagraph.SetJc("left"); oParagraph.AddText("Class type = " + sType); oPlaceholder.SetType("chart"); oSlide.AddObject(oShape); builder.SaveFile("pptx", "ApiPlaceholder.pptx"); builder.CloseFile();