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

Apply a solid color fill to a shape in a PDF.

// How do I set the background color of a shape in a PDF?

// Use an RGB color to fill a shape's background in a PDF.

const doc = Api.GetDocument();
const page = doc.GetPage(0);

const rgbColor = Api.RGB(255, 111, 61);
const fill = Api.CreateSolidFill(rgbColor);
const stroke = Api.CreateStroke(0, Api.CreateNoFill());
const drawing = Api.CreateShape("flowChartMagneticTape", 150 * 36000, 65 * 36000, fill, stroke);
drawing.SetPosition(608400, 1267200);
page.AddObject(drawing);