Note

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

Access to this page requires authorization. You can try .

Excel.DeleteShiftDirection enum

Package:
excel

Remarks

API set: ExcelApi 1.1

Used by

Examples

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/30-events/events-worksheet.yaml

// This function deletes data from a range and sets the delete shift direction to "up".
await Excel.run(async (context) => {
 const sheet = context.workbook.worksheets.getItem("Sample");
 const range = sheet.getRange("A5:F5");
 range.delete(Excel.DeleteShiftDirection.up);
});

Fields

left = "Left"
up = "Up"

Feedback

Was this page helpful?