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

sPatternTypePatternTypedefault: null

The pattern type used for the fill selected from one of the available pattern types.

BgColorApiUniColordefault: null

The background color used for the pattern creation.

FgColorApiUniColordefault: null

The foreground color used for the pattern creation.

Returns

ApiFill

Try It

var oWorksheet = Api.GetActiveSheet();
var oFill = Api.CreatePatternFill("dashDnDiag", Api.CreateRGBColor(255, 111, 61), Api.CreateRGBColor(51, 51, 51));
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
oWorksheet.AddShape("flowChartOnlineStorage", 60 * 36000, 35 * 36000, oFill, oStroke, 0, 2 * 36000, 1, 3 * 36000);

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