CreatePatternFill
Creates a pattern fill to apply to the object using the selected pattern as the object background.
Syntax
expression.CreatePatternFill(patternType, bgColor, fgColor);
expression
- A variable that represents a Api class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
patternType | Required | PatternType | The pattern type used for the fill selected from one of the available pattern types. | |
bgColor | Required | ApiUniColor | The background color used for the pattern creation. | |
fgColor | Required | ApiUniColor | The foreground color used for the pattern creation. |
Returns
Example
This example creates a pattern fill to apply to the object using the selected pattern as the object background.
- Code
- Result
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);