跳到主要内容

CreateRadialGradientFill

Creates a radial gradient fill to apply to the object using the selected radial gradient as the object background.

Syntax

expression.CreateRadialGradientFill(gradientStops);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
gradientStopsRequirednumber[]The array of gradient color stops measured in 1000th of percent.

Returns

ApiFill

Example

This example shows how to create a radial gradient fill.

// How to create a radial gradient fill.

// Add a radial gradient fill.

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

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