CreatePatternFill
function CreatePatternFill(sPatternType: PatternType = null, BgColor: ApiUniColor = null, FgColor: ApiUniColor = null): ApiFill
Description
Creates a pattern fill to apply to the object using the selected pattern as the object background.
Parameters
The pattern type used for the fill selected from one of the available pattern types.
The background color used for the pattern creation.
The foreground color used for the pattern creation.
Returns
ApiFill
Try It
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oFill = Api.CreatePatternFill("dashDnDiag", Api.CreateRGBColor(255, 111, 61), Api.CreateRGBColor(51, 51, 51));
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
var oDrawing = Api.CreateShape("rect", 5930900, 395605, oFill, oStroke);
oParagraph.AddDrawing(oDrawing);