Specifies a one-based index which determines when a numbering level should restart to its starting value. A numbering level restarts when an instance of the specified numbering level which is higher (earlier than this level) is used in the given document contents. By default this value is true.
Name | Type | Description |
isRestart | boolean | The true value means that a numbering level will be restarted to its starting value. |
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oNumbering = oDocument.CreateNumbering("numbered"); var oNumLvl = oNumbering.GetLevel(0); var oNumLvl1 = oNumbering.GetLevel(1); oNumLvl1.SetRestart(false); var oParagraph = oDocument.GetElement(0); oParagraph.SetNumbering(oNumLvl); oParagraph.AddText("This is the first element of a parent numbered list which starts with '1'"); oParagraph = Api.CreateParagraph(); oParagraph.SetNumbering(oNumLvl1); oParagraph.AddText("This is the first element of a child numbered list which starts with 'a'"); oDocument.Push(oParagraph); oParagraph = Api.CreateParagraph(); oParagraph.SetNumbering(oNumLvl1); oParagraph.AddText("This is the second element of a child numbered list which starts with 'b'"); oDocument.Push(oParagraph); oParagraph = Api.CreateParagraph(); oParagraph.SetNumbering(oNumLvl); oParagraph.AddText("This is the second element of a parent numbered list which starts with '2'"); oDocument.Push(oParagraph); oParagraph = Api.CreateParagraph(); oParagraph.SetNumbering(oNumLvl1); oParagraph.AddText("This is the third element of a child numbered list which starts with 'c'"); oDocument.Push(oParagraph); oParagraph = Api.CreateParagraph(); oParagraph.SetNumbering(oNumLvl1); oParagraph.AddText("This is the fourth element of a child numbered list which starts with 'd'"); oDocument.Push(oParagraph); builder.SaveFile("docx", "SetRestart.docx"); builder.CloseFile();