Insert

function Insert(shift: string = null): void

Description

Inserts a cell or a range of cells into the worksheet or macro sheet and shifts other cells away to make space.

Parameters

shiftstringdefault: null

Specifies which way to shift the cells ("right", "down").

Returns

void

Try It

var oWorksheet = Api.GetActiveSheet();
oWorksheet.GetRange("B4").SetValue("1");
oWorksheet.GetRange("C4").SetValue("2");
oWorksheet.GetRange("D4").SetValue("3");
oWorksheet.GetRange("C5").SetValue("5");
var oRange = oWorksheet.GetRange("C4");
oRange.Insert("down");

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).