SetNumbering
Specifies that the current paragraph references the numbering definition instance in the current document.
Parameters:
Name |
Type |
Description |
oNumberingLevel |
ApiNumberingLevel
|
The numbering level which will be used for assigning the numbers to the paragraph. |
Returns:
-
This method doesn't return any data.
Example
Copy code
builder.CreateFile("docx");
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 bullet lvl " + (nLvl + 1));
oParagraph.SetNumbering(oNumLvl);
oParagraph.SetContextualSpacing(true);
oDocument.Push(oParagraph);
}
builder.SaveFile("docx", "SetNumbering.docx");
builder.CloseFile();
Resulting document