Skip to main content

CreateSolidFill

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

Syntax

expression.CreateSolidFill(color);

expression - A variable that represents a Api class.

Parameters

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

Returns

ApiFill

Example

Fill a shape with a solid color in a document.

// How do I apply a solid color background to a shape in a document?

// Set a flat single-color fill on a rounded rectangle shape in a document.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let fill = Api.CreateSolidFill(Api.RGB(255, 111, 61));
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
let shape = Api.CreateShape("roundRect", 5930900, 395605, fill, stroke);
paragraph.AddDrawing(shape);