CreateLinearGradientFill
Create a linear gradient fill which allows to fill the object using a selected linear gradient as the object background.
Parameters:
Name |
Type |
Description |
aGradientStop |
Array
|
The array of gradient color stops measured in 1000th of percent. |
Angle |
PositiveFixedAngle
|
The angle measured in 60000th of a degree that will define the gradient direction. |
Returns:
- Type
-
ApiFill
Example
Copy code
builder.CreateFile("xlsx");
oWorksheet = Api.GetActiveSheet();
oGs1 = Api.CreateGradientStop(Api.CreateRGBColor(255, 224, 204), 0);
oGs2 = Api.CreateGradientStop(Api.CreateRGBColor(255, 164, 101), 100000);
oFill = Api.CreateLinearGradientFill([oGs1, oGs2], 5400000);
oStroke = Api.CreateStroke(0, Api.CreateNoFill());
oWorksheet.AddShape("flowChartOnlineStorage", 60 * 36000, 35 * 36000, oFill, oStroke, 0, 2 * 36000, 1, 3 * 36000);
builder.SaveFile("xlsx", "CreateLinearGradientFill.xlsx");
builder.CloseFile();
Resulting document