CreateNumbering

function CreateNumbering(sType: bullet | numbered = "bullet"): ApiNumbering

Description

Creates an abstract multilevel numbering with a specified type.

Parameters

sTypebullet | numbereddefault: "bullet"

The type of the numbering which will be created.

Returns

ApiNumbering

Try It

var oDocument = Api.GetDocument();
var oNumbering = oDocument.CreateNumbering("bullet");
for (let nLvl = 0; nLvl < 8; ++nLvl) {
   var oNumLvl = oNumbering.GetLevel(nLvl);
   var oParagraph = Api.CreateParagraph();
   oParagraph.AddText("Default numbered lvl " + (nLvl + 1));
   oParagraph.SetNumbering(oNumLvl);
   oParagraph.SetContextualSpacing(true);
   oDocument.Push(oParagraph);
}

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).