Excel.ShapeZOrder enum

Specifies where in the z-order a shape should be moved relative to other shapes.

Remarks

[ API set: ExcelApi 1.9 ]

Examples

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/44-shape/shape-move-and-order.yaml

await Excel.run(async (context) => {
    const sheet = context.workbook.worksheets.getItem("Shapes");
    const shape = sheet.shapes.getItem("Octagon")
    shape.setZOrder(Excel.ShapeZOrder.sendBackward);
    await context.sync();
});

Fields

bringForward = "BringForward"
bringToFront = "BringToFront"
sendBackward = "SendBackward"
sendToBack = "SendToBack"