SetHorFlip

SetHorFlip(bFlip)

Flips the current drawing horizontally.

Parameters:

Name Type Description
bFlip boolean

Specifies if the figure will be flipped horizontally or not.

Returns:

This method doesn't return any data.

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oFill = Api.CreateSolidFill(Api.CreateRGBColor(255, 111, 61));
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
var oDrawing = Api.CreateShape("cube", 3212465, 963295, oFill, oStroke);
oParagraph.AddDrawing(oDrawing);
oDrawing.SetHorFlip(true);
builder.SaveFile("docx", "SetHorFlip.docx");
builder.CloseFile();

Resulting document