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