Nested Sublists

Hi,

Is there any way to nest sublists like the following for ListTemplate.NumberDefault?

Note the nesting. When I do this by specifying number default for both, i still get the next list as NumberLowercaseLetterDot

Thanks

1.1. AN AFFIDAVIT FOR *** MUST BE RECORDED WITH THE CLERK AND
RECORDER OF THE COUNTY WHERE THE PROPERTY IS LOCATED. SAID AFFIDAVIT:

  1. TO BE EXECUTED BY ANY ONE OR MORE TRUSTEES.
  2. TO CONTAIN THE NAME OF THE TRUST.
  3. TO CONTAIN THE NAMES AND ADDRESSES OF ALL TRUSTEES WHO ARE REPRESENTED BY SUCH NAME.
  4. TO CONSTITUTE PRIMA FACIE EVIDENCE OF:
    a. THE FACT RECITED THEREIN.
    b.THE AUTHORITY OF THE AFFIANT TO EXECUTE AND RECORD THE AFFIDAVIT.
    c. THE AUTHORITY OF THE TRUSTEES WHO ARE THEREBY EMPOWERED TO
    CONVEY OR ENCUMBER THE PROPERTY.

end up with this (ignore other formatting, bold, etc)

  1. AN AFFIDAVIT FOR *** MUST BE RECORDED WITH THE CLERK AND RECORDER OF THE COUNTY WHERE THE PROPERTY IS LOCATED. SAID AFFIDAVIT:
    1. TO BE EXECUTED BY ANY ONE OR MORE TRUSTEES.
    2. TO CONTAIN THE NAME OF THE TRUST.
    3. TO CONTAIN THE NAMES AND ADDRESSES OF ALL TRUSTEES WHO ARE REPRESENTED BY SUCH NAME.
    4. TO CONSTITUTE PRIMA FACIE EVIDENCE OF:

i. THE FACT RECITED THEREIN.
ii. THE AUTHORITY OF THE AFFIANT TO EXECUTE AND RECORD THE AFFIDAVIT.
iii. THE AUTHORITY OF THE TRUSTEES WHO ARE THEREBY EMPOWERED TO CONVEY OR ENCUMBER THE PROPERTY.

Just to add, the numbering is fine if I don’t specify a listlevel number or indent. Either of these actions cause the list format type to be ignored for the sublists

I think i found my answer here thanks…
https://forum.aspose.com/t/84594
Multilevel Lists

Hi Bruno,

Thanks for your inquiry. It is nice to hear from you that you have found the solution of your issue. Please check the following code examples for your kind reference.

Document doc = new Document();
// Create a list based on one of the Microsoft Word list templates.
Aspose.Words.Lists.List list = doc.Lists.Add(ListTemplate.NumberDefault);
// Completely customize one list level.
ListLevel level1 = list.ListLevels[0];
level1.NumberStyle = NumberStyle.OrdinalText;
level1.NumberFormat = "1";
// Completely customize yet another list level.
ListLevel level2 = list.ListLevels[1];
level2.NumberFormat = "1.1";
// Completely customize yet another list level.
ListLevel level3 = list.ListLevels[2];
level3.NumberFormat = "1.1.1";
DocumentBuilder builder = new DocumentBuilder(doc);
builder.ListFormat.List = list;
builder.Writeln("The quick brown fox...");
builder.ListFormat.ListIndent();
builder.Writeln("jumped over the lazy dog.");
builder.ListFormat.ListIndent();
builder.Writeln("jumped over the lazy dog.");
builder.ListFormat.ListOutdent();
builder.Writeln("The quick brown fox...");
builder.ListFormat.RemoveNumbers();
builder.Document.Save(MyDir + "Lists.CreateCustomList Out.doc");
doc.Save(MyDir + "Out.docx");

Following code example Shows how to specify list level number when building a list using DocumentBuilder.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Create a numbered list based on one of the Microsoft Word list templates and
// apply it to the current paragraph in the document builder.
builder.ListFormat.List = doc.Lists.Add(ListTemplate.NumberArabicDot);
// There are 9 levels in this list, lets try them all.
for (int i = 0; i < 9; i++)
{
    builder.ListFormat.ListLevelNumber = i;
    builder.Writeln("Level " + i);
}
// Create a bulleted list based on one of the Microsoft Word list templates
// and apply it to the current paragraph in the document builder.
builder.ListFormat.List = doc.Lists.Add(ListTemplate.BulletDiamonds);
// There are 9 levels in this list, lets try them all.
for (int i = 0; i < 9; i++)
{
    builder.ListFormat.ListLevelNumber = i;
    builder.Writeln("Level " + i);
}
// This is a way to stop list formatting. 
builder.ListFormat.List = null;
builder.Document.Save(MyDir + "Lists.SpecifyListLevel Out.doc");

Please feel free to ask if you have any question about Aspose.Words, we will be happy to help you.