跳到主要内容

CreatePresetColor

Creates a color selecting it from one of the available color presets.

Syntax

expression.CreatePresetColor(presetColor);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
presetColorRequiredPresetColorA preset selected from the list of the available color preset names.

Returns

ApiPresetColor

Example

This example creates a color selecting for create gradient stop.

// How to create a preset color.

// Add a preset color as a gradient stop.

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

const gs1 = Api.CreateGradientStop(Api.CreatePresetColor("peachPuff"), 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);