CreateGradientStop
Create a gradient stop used for different types of gradients.
Parameters:
Name |
Type |
Description |
oUniColor |
ApiUniColor
|
The color used for the gradient stop. |
nPos |
PositivePercentage
|
The position of the gradient stop measured in 1000th of percent. |
Returns:
- Type
-
ApiGradientStop
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oGs1, oGs2, oFill, oStroke, oDrawing, oParagraph;
oParagraph = oDocument.GetElement(0);
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());
oDrawing = Api.CreateShape("rect", 5930900, 395605, oFill, oStroke);
oParagraph.AddDrawing(oDrawing);
builder.SaveFile("docx", "CreateGradientStop.docx");
builder.CloseFile();
Resulting document