SetVertFlip

SetVertFlip(bFlip) → { boolean }

Flips the current drawing vertically.

Parameters:

Name Type Description
bFlip boolean

Specifies if the figure will be flipped vertically or not.

Returns:

Type
boolean

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.SetVertFlip(true);
builder.SaveFile("docx", "SetVertFlip.docx");
builder.CloseFile();

Resulting document