TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

ApiGradientStop

new ApiGradientStop()

Class representing gradient stop.

Methods

Name Description
GetClassType

Returns a type of the ApiGradientStop class.

ToJSON

Converts the ApiGradientStop object into the JSON object.

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oGs1 = Api.CreateGradientStop(Api.CreateRGBColor(255, 213, 191), 0);
var oGs2 = Api.CreateGradientStop(Api.CreateRGBColor(255, 111, 61), 100000);
var oFill = Api.CreateRadialGradientFill([oGs1, oGs2]);
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
var oDrawing = Api.CreateShape("rect", 1908000, 1404000, oFill, oStroke);
oDrawing.SetDistances(914400, 0, 914400, 0);
oDrawing.SetWrappingStyle("square");
oParagraph.AddDrawing(oDrawing);
var sClassType = oGs1.GetClassType();
oParagraph.AddText("Class Type = " + sClassType);
builder.SaveFile("docx", "ApiGradientStop.docx");
builder.CloseFile();

Resulting document