Skip to main content

CreateGradientStop

Creates a gradient stop used for different types of gradients.

Syntax

expression.CreateGradientStop(color, pos);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
colorRequiredApiColorThe color used for the gradient stop.
posRequiredPositivePercentageThe position of the gradient stop measured in 1000th of percent.

Returns

ApiGradientStop

Example

This example shows how to create a gradient stop used for different types of gradients.

// How to add a gradient stop for gradient.

// Create a stop for a gradient.

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

const gs1 = Api.CreateGradientStop(Api.RGB(255, 213, 191), 0);
const gs2 = Api.CreateGradientStop(Api.RGB(255, 111, 61), 100000);
const fill = Api.CreateRadialGradientFill([gs1, gs2]);
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);