跳到主要内容

CreateSolidFill

Creates a solid fill to apply to the object using a selected solid color as the object background.

Syntax

expression.CreateSolidFill(uniColor);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
uniColorRequiredApiUniColorThe color used for the element fill.

Returns

ApiFill

Example

This example shows how to create a solid fill.

// How to color a background.

// Add solid fill color as a shape background.

const presentation = Api.GetPresentation();
const slide = presentation.GetSlideByIndex(0);
slide.RemoveAllObjects();

const rgbColor = Api.CreateRGBColor(255, 111, 61);
const fill = Api.CreateSolidFill(rgbColor);
const stroke = Api.CreateStroke(0, Api.CreateNoFill());
const drawing = Api.CreateShape("flowChartMagneticTape", 300 * 36000, 130 * 36000, fill, stroke);
drawing.SetPosition(608400, 1267200);
slide.AddObject(drawing);