Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Excel.ShapeZOrder enum

Package:
excel

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

Remarks

API set: ExcelApi 1.9

Used by

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"

Feedback

Was this page helpful?