CreatePatternFill
Creates a pattern fill to apply to the object using the selected pattern as the object background.
Parameters:
Name |
Type |
Description |
sPatternType |
PatternType
|
The pattern type used for the fill selected from one of the available pattern types. |
BgColor |
ApiUniColor
|
The background color used for the pattern creation. |
FgColor |
ApiUniColor
|
The foreground color used for the pattern creation. |
Returns:
- Type
-
ApiFill
Example
Copy code
builder.CreateFile("pptx");
var oPresentation = Api.GetPresentation();
var oSlide = oPresentation.GetSlideByIndex(0);
var oFill = Api.CreatePatternFill("dashDnDiag", Api.CreateRGBColor(255, 224, 204), Api.CreateRGBColor(255, 164, 101));
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
var oDrawing = Api.CreateShape("flowChartMagneticTape", 300 * 36000, 130 * 36000, oFill, oStroke);
oSlide.AddObject(oDrawing);
builder.SaveFile("pptx", "CreatePatternFill.pptx");
builder.CloseFile();
Resulting document