SetVertFlip
function SetVertFlip(bFlip: boolean = null): boolean
Description
Flips the current drawing vertically.
Parameters
- bFlip
boolean
null Specifies if the figure will be flipped vertically or not.
Returns
boolean
Try It
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);