TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

CreatePatternFill

CreatePatternFill(sPatternType, BgColor, FgColor) → { ApiFill }

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);
oSlide.RemoveAllObjects();
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("flowChartMagneticTape", 300 * 36000, 130 * 36000, oFill, oStroke);
oSlide.AddObject(oDrawing);
oDrawing.SetPosition(608400, 1267200);
builder.SaveFile("pptx", "CreatePatternFill.pptx");
builder.CloseFile();

Resulting document