CreateSolidFill
Creates a solid fill to apply to the object using a selected solid color as the object background.
Parameters:
Name |
Type |
Description |
oUniColor |
ApiUniColor
|
The color used for the element fill. |
Returns:
- Type
-
ApiFill
Example
Copy code
builder.CreateFile("docx");
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);
builder.SaveFile("docx", "CreateSolidFill.docx");
builder.CloseFile();
Resulting document