CreateSolidFill

function CreateSolidFill(oUniColor: ApiUniColor = null): ApiFill

Description

Creates a solid fill to apply to the object using a selected solid color as the object background.

Parameters

oUniColorApiUniColordefault: null

The color used for the element fill.

Returns

ApiFill

Try It

var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oRGBColor = Api.CreateRGBColor(255, 111, 61);
var oFill = Api.CreateSolidFill(oRGBColor);
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
var oDrawing = Api.CreateShape("roundRect", 5930900, 395605, oFill, oStroke);
oParagraph.AddDrawing(oDrawing);

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).