CreateLinearGradientFill

function CreateLinearGradientFill(aGradientStop: [] = null, Angle: PositiveFixedAngle = null): ApiFill

Description

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

Parameters

aGradientStop[]default: null

The array of gradient color stops measured in 1000th of percent.

AnglePositiveFixedAngledefault: null

The angle measured in 60000th of a degree that will define the gradient direction.

Returns

ApiFill

Try It

var oPresentation = Api.GetPresentation();
var oSlide = oPresentation.GetSlideByIndex(0);
oSlide.RemoveAllObjects();
var oGs1 = Api.CreateGradientStop(Api.CreateRGBColor(255, 213, 191), 0);
var oGs2 = Api.CreateGradientStop(Api.CreateRGBColor(255, 111, 61), 100000);
var oFill = Api.CreateLinearGradientFill([oGs1, oGs2], 5400000);
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
var oDrawing = Api.CreateShape("flowChartMagneticTape", 300 * 36000, 130 * 36000, oFill, oStroke);
oSlide.AddObject(oDrawing);
oDrawing.SetPosition(608400, 1267200);

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).