ListLevel

Inheritance: java.lang.Object

All Implemented Interfaces: java.lang.Cloneable

public class ListLevel implements Cloneable

Defines formatting for a list level.

To learn more, visit the Working with Lists documentation article.

Remarks:

You do not create objects of this class. List level objects are created automatically when a list is created. You access ListLevel objects via the ListLevelCollection collection.

Use the properties of ListLevel to specify list formatting for individual list levels.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Methods

MethodDescription
clearRunAttrs()
createPictureBullet()Creates picture bullet shape for the current list level.
deletePictureBullet()Deletes picture bullet for the current list level.
equals(ListLevel level)Compares with the specified ListLevel.
fetchInheritedRunAttr(int key)
getAlignment()Gets the justification of the actual number of the list item.
getCustomNumberStyleFormat()Gets the custom number style format for this list level.
getDirectRunAttr(int key)
getDirectRunAttr(int key, int revisionsView)
getEffectiveValue(int index, int numberStyle, String customNumberStyleFormat)
getFont()Specifies character formatting used for the list label.
getImageData()Returns image data of the picture bullet shape for the current list level.
getLinkedStyle()Gets the paragraph style that is linked to this list level.
getNumberFormat()Gets the number format for the list level.
getNumberPosition()Gets the position (in points) of the number or bullet for the list level.
getNumberStyle()Gets the number style for this list level.
getRestartAfterLevel()Gets the list level that must appear before the specified list level restarts numbering.
getStartAt()Gets the starting number for this list level.
getTabPosition()Gets the tab position (in points) for the list level.
getTextPosition()Gets the position (in points) for the second line of wrapping text for the list level.
getTrailingCharacter()Gets the character inserted after the number for the list level.
hashCode()
isLegal()True if the level turns all inherited numbers to Arabic, false if it preserves their number style.
isLegal(boolean value)True if the level turns all inherited numbers to Arabic, false if it preserves their number style.
removeRunAttr(int key)
setAlignment(int value)Sets the justification of the actual number of the list item.
setLinkedStyle(Style value)Sets the paragraph style that is linked to this list level.
setNumberFormat(String value)Sets the number format for the list level.
setNumberPosition(double value)Sets the position (in points) of the number or bullet for the list level.
setNumberStyle(int value)Sets the number style for this list level.
setRestartAfterLevel(int value)Sets the list level that must appear before the specified list level restarts numbering.
setRunAttr(int key, Object value)
setStartAt(int value)Sets the starting number for this list level.
setTabPosition(double value)Sets the tab position (in points) for the list level.
setTextPosition(double value)Sets the position (in points) for the second line of wrapping text for the list level.
setTrailingCharacter(int value)Sets the character inserted after the number for the list level.

clearRunAttrs()

public void clearRunAttrs()

createPictureBullet()

public void createPictureBullet()

Creates picture bullet shape for the current list level.

Remarks:

Please note, getNumberStyle() / setNumberStyle(int) will be set to NumberStyle.BULLET and getNumberFormat() / setNumberFormat(java.lang.String) to “\xF0B7” to properly display picture bullet. Red cross image will be set as picture bullet image upon creating. To change it please use getImageData().

Examples:

Shows how to set a custom image icon for list item labels.


 Document doc = new Document();

 List list = doc.getLists().add(ListTemplate.BULLET_CIRCLE);

 // Create a picture bullet for the current list level, and set an image from a local file system
 // as the icon that the bullets for this list level will display.
 list.getListLevels().get(0).createPictureBullet();
 list.getListLevels().get(0).getImageData().setImage(getImageDir() + "Logo icon.ico");

 Assert.assertTrue(list.getListLevels().get(0).getImageData().hasImage());

 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("Hello world!");
 builder.write("Hello again!");

 doc.save(getArtifactsDir() + "Lists.CreatePictureBullet.docx");

 list.getListLevels().get(0).deletePictureBullet();

 Assert.assertNull(list.getListLevels().get(0).getImageData());
 

deletePictureBullet()

public void deletePictureBullet()

Deletes picture bullet for the current list level.

Remarks:

Default bullet will be shown after deleting.

Examples:

Shows how to set a custom image icon for list item labels.


 Document doc = new Document();

 List list = doc.getLists().add(ListTemplate.BULLET_CIRCLE);

 // Create a picture bullet for the current list level, and set an image from a local file system
 // as the icon that the bullets for this list level will display.
 list.getListLevels().get(0).createPictureBullet();
 list.getListLevels().get(0).getImageData().setImage(getImageDir() + "Logo icon.ico");

 Assert.assertTrue(list.getListLevels().get(0).getImageData().hasImage());

 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("Hello world!");
 builder.write("Hello again!");

 doc.save(getArtifactsDir() + "Lists.CreatePictureBullet.docx");

 list.getListLevels().get(0).deletePictureBullet();

 Assert.assertNull(list.getListLevels().get(0).getImageData());
 

equals(ListLevel level)

public boolean equals(ListLevel level)

Compares with the specified ListLevel.

Parameters:

ParameterTypeDescription
levelListLevel

Returns: boolean

fetchInheritedRunAttr(int key)

public Object fetchInheritedRunAttr(int key)

Parameters:

ParameterTypeDescription
keyint

Returns: java.lang.Object

getAlignment()

public int getAlignment()

Gets the justification of the actual number of the list item.

Remarks:

The list label is justified relative to the getNumberPosition() / setNumberPosition(double) property.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Returns: int - The justification of the actual number of the list item. The returned value is one of ListLevelAlignment constants.

getCustomNumberStyleFormat()

public String getCustomNumberStyleFormat()

Gets the custom number style format for this list level. For example: “a, , \u011d, …”.

Examples:

Shows how to get the format for a list with the custom number style.


 Document doc = new Document(getMyDir() + "List with leading zero.docx");

 ListLevel listLevel = doc.getFirstSection().getBody().getParagraphs().get(0).getListFormat().getListLevel();

 String customNumberStyleFormat = "";

 if (listLevel.getNumberStyle() == NumberStyle.CUSTOM)
     customNumberStyleFormat = listLevel.getCustomNumberStyleFormat();

 Assert.assertEquals("001, 002, 003, ...", customNumberStyleFormat);

 // We can get value for the specified index of the list item.
 Assert.assertEquals("iv", ListLevel.getEffectiveValue(4, NumberStyle.LOWERCASE_ROMAN, null));
 Assert.assertEquals("005", ListLevel.getEffectiveValue(5, NumberStyle.CUSTOM, customNumberStyleFormat));
 

Returns: java.lang.String - The custom number style format for this list level.

getDirectRunAttr(int key)

public Object getDirectRunAttr(int key)

Parameters:

ParameterTypeDescription
keyint

Returns: java.lang.Object

getDirectRunAttr(int key, int revisionsView)

public Object getDirectRunAttr(int key, int revisionsView)

Parameters:

ParameterTypeDescription
keyint
revisionsViewint

Returns: java.lang.Object

getEffectiveValue(int index, int numberStyle, String customNumberStyleFormat)

public static String getEffectiveValue(int index, int numberStyle, String customNumberStyleFormat)

Parameters:

ParameterTypeDescription
indexint
numberStyleint
customNumberStyleFormatjava.lang.String

Returns: java.lang.String

getFont()

public Font getFont()

Specifies character formatting used for the list label.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Returns: Font - The corresponding Font value.

getImageData()

public ImageData getImageData()

Returns image data of the picture bullet shape for the current list level.

Remarks:

If this level doesn’t define picture bullet returns null . Before setting new image for non picture bullet shape, please use createPictureBullet() method first.

Returns: ImageData - Image data of the picture bullet shape for the current list level.

getLinkedStyle()

public Style getLinkedStyle()

Gets the paragraph style that is linked to this list level.

Remarks:

This property is null when the list level is not linked to a paragraph style. This property can be set to null .

Examples:

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Returns: Style - The paragraph style that is linked to this list level.

getNumberFormat()

public String getNumberFormat()

Gets the number format for the list level.

Remarks:

Among normal text characters, the string can contain placeholder characters \x0000 to \x0008 representing the numbers from the corresponding list levels.

For example, the string “\x0000.\x0001)” will generate a list label that looks something like “1.5)”. The number “1” is the current number from the 1st list level, the number “5” is the current number from the 2nd list level.

Null is not allowed, but an empty string meaning no number is valid.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Returns: java.lang.String - The number format for the list level.

getNumberPosition()

public double getNumberPosition()

Gets the position (in points) of the number or bullet for the list level.

Remarks:

getNumberPosition() / setNumberPosition(double) corresponds to LeftIndent plus FirstLineIndent of the paragraph.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Returns: double - The position (in points) of the number or bullet for the list level.

getNumberStyle()

public int getNumberStyle()

Gets the number style for this list level.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Returns: int - The number style for this list level. The returned value is one of NumberStyle constants.

getRestartAfterLevel()

public int getRestartAfterLevel()

Gets the list level that must appear before the specified list level restarts numbering.

Remarks:

The value of -1 means the numbering will continue.

Examples:

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Returns: int - The list level that must appear before the specified list level restarts numbering.

getStartAt()

public int getStartAt()

Gets the starting number for this list level.

Remarks:

Default value is 1.

Examples:

Shows how to restart numbering in a list by copying a list.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize its first list level.
 List list1 = doc.getLists().add(ListTemplate.NUMBER_ARABIC_PARENTHESIS);
 list1.getListLevels().get(0).getFont().setColor(Color.RED);
 list1.getListLevels().get(0).setAlignment(ListLevelAlignment.RIGHT);

 // Apply our list to some paragraphs.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.writeln("List 1 starts below:");
 builder.getListFormat().setList(list1);
 builder.writeln("Item 1");
 builder.writeln("Item 2");
 builder.getListFormat().removeNumbers();

 // We can add a copy of an existing list to the document's list collection
 // to create a similar list without making changes to the original.
 List list2 = doc.getLists().addCopy(list1);
 list2.getListLevels().get(0).getFont().setColor(Color.BLUE);
 list2.getListLevels().get(0).setStartAt(10);

 // Apply the second list to new paragraphs.
 builder.writeln("List 2 starts below:");
 builder.getListFormat().setList(list2);
 builder.writeln("Item 1");
 builder.writeln("Item 2");
 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.RestartNumberingUsingListCopy.docx");
 

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Returns: int - The starting number for this list level.

getTabPosition()

public double getTabPosition()

Gets the tab position (in points) for the list level.

Remarks:

Has effect only when getTrailingCharacter() / setTrailingCharacter(int) is a tab.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Returns: double - The tab position (in points) for the list level.

getTextPosition()

public double getTextPosition()

Gets the position (in points) for the second line of wrapping text for the list level.

Remarks:

getTextPosition() / setTextPosition(double) corresponds to LeftIndent of the paragraph.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Returns: double - The position (in points) for the second line of wrapping text for the list level.

getTrailingCharacter()

public int getTrailingCharacter()

Gets the character inserted after the number for the list level.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Returns: int - The character inserted after the number for the list level. The returned value is one of ListTrailingCharacter constants.

hashCode()

public int hashCode()

Returns: int

isLegal()

public boolean isLegal()

True if the level turns all inherited numbers to Arabic, false if it preserves their number style.

Examples:

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Returns: boolean - The corresponding boolean value.

isLegal(boolean value)

public void isLegal(boolean value)

True if the level turns all inherited numbers to Arabic, false if it preserves their number style.

Examples:

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Parameters:

ParameterTypeDescription
valuebooleanThe corresponding boolean value.

removeRunAttr(int key)

public void removeRunAttr(int key)

Parameters:

ParameterTypeDescription
keyint

setAlignment(int value)

public void setAlignment(int value)

Sets the justification of the actual number of the list item.

Remarks:

The list label is justified relative to the getNumberPosition() / setNumberPosition(double) property.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Parameters:

ParameterTypeDescription
valueintThe justification of the actual number of the list item. The value must be one of ListLevelAlignment constants.

setLinkedStyle(Style value)

public void setLinkedStyle(Style value)

Sets the paragraph style that is linked to this list level.

Remarks:

This property is null when the list level is not linked to a paragraph style. This property can be set to null .

Examples:

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Parameters:

ParameterTypeDescription
valueStyleThe paragraph style that is linked to this list level.

setNumberFormat(String value)

public void setNumberFormat(String value)

Sets the number format for the list level.

Remarks:

Among normal text characters, the string can contain placeholder characters \x0000 to \x0008 representing the numbers from the corresponding list levels.

For example, the string “\x0000.\x0001)” will generate a list label that looks something like “1.5)”. The number “1” is the current number from the 1st list level, the number “5” is the current number from the 2nd list level.

Null is not allowed, but an empty string meaning no number is valid.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Parameters:

ParameterTypeDescription
valuejava.lang.StringThe number format for the list level.

setNumberPosition(double value)

public void setNumberPosition(double value)

Sets the position (in points) of the number or bullet for the list level.

Remarks:

getNumberPosition() / setNumberPosition(double) corresponds to LeftIndent plus FirstLineIndent of the paragraph.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Parameters:

ParameterTypeDescription
valuedoubleThe position (in points) of the number or bullet for the list level.

setNumberStyle(int value)

public void setNumberStyle(int value)

Sets the number style for this list level.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Parameters:

ParameterTypeDescription
valueintThe number style for this list level. The value must be one of NumberStyle constants.

setRestartAfterLevel(int value)

public void setRestartAfterLevel(int value)

Sets the list level that must appear before the specified list level restarts numbering.

Remarks:

The value of -1 means the numbering will continue.

Examples:

Shows advances ways of customizing list labels.


 Document doc = new Document();
 DocumentBuilder builder = new DocumentBuilder(doc);

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 // Level 1 labels will be formatted according to the "Heading 1" paragraph style and will have a prefix.
 // These will look like "Appendix A", "Appendix B"...
 list.getListLevels().get(0).setNumberFormat("Appendix ");
 list.getListLevels().get(0).setNumberStyle(NumberStyle.UPPERCASE_LETTER);
 list.getListLevels().get(0).setLinkedStyle(doc.getStyles().get("Heading 1"));

 // Level 2 labels will display the current numbers of the first and the second list levels and have leading zeroes.
 // If the first list level is at 1, then the list labels from these will look like "Section (1.01)", "Section (1.02)"...
 list.getListLevels().get(1).setNumberFormat("Section (.)");
 list.getListLevels().get(1).setNumberStyle(NumberStyle.LEADING_ZERO);

 // Note that the higher-level uses UppercaseLetter numbering.
 // We can set the "IsLegal" property to use Arabic numbers for the higher list levels.
 list.getListLevels().get(1).isLegal(true);
 list.getListLevels().get(1).setRestartAfterLevel(0);

 // Level 3 labels will be upper case Roman numerals with a prefix and a suffix and will restart at each List level 1 item.
 // These list labels will look like "-I-", "-II-"...
 list.getListLevels().get(2).setNumberFormat("--");
 list.getListLevels().get(2).setNumberStyle(NumberStyle.UPPERCASE_ROMAN);
 list.getListLevels().get(2).setRestartAfterLevel(1);

 // Make labels of all list levels bold.
 for (ListLevel level : list.getListLevels())
     level.getFont().setBold(true);

 // Apply list formatting to the current paragraph.
 builder.getListFormat().setList(list);

 // Create list items that will display all three of our list levels.
 for (int n = 0; n < 2; n++) {
     for (int i = 0; i < 3; i++) {
         builder.getListFormat().setListLevelNumber(i);
         builder.writeln("Level " + i);
     }
 }

 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.CreateListRestartAfterHigher.docx");
 

Parameters:

ParameterTypeDescription
valueintThe list level that must appear before the specified list level restarts numbering.

setRunAttr(int key, Object value)

public void setRunAttr(int key, Object value)

Parameters:

ParameterTypeDescription
keyint
valuejava.lang.Object

setStartAt(int value)

public void setStartAt(int value)

Sets the starting number for this list level.

Remarks:

Default value is 1.

Examples:

Shows how to restart numbering in a list by copying a list.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize its first list level.
 List list1 = doc.getLists().add(ListTemplate.NUMBER_ARABIC_PARENTHESIS);
 list1.getListLevels().get(0).getFont().setColor(Color.RED);
 list1.getListLevels().get(0).setAlignment(ListLevelAlignment.RIGHT);

 // Apply our list to some paragraphs.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.writeln("List 1 starts below:");
 builder.getListFormat().setList(list1);
 builder.writeln("Item 1");
 builder.writeln("Item 2");
 builder.getListFormat().removeNumbers();

 // We can add a copy of an existing list to the document's list collection
 // to create a similar list without making changes to the original.
 List list2 = doc.getLists().addCopy(list1);
 list2.getListLevels().get(0).getFont().setColor(Color.BLUE);
 list2.getListLevels().get(0).setStartAt(10);

 // Apply the second list to new paragraphs.
 builder.writeln("List 2 starts below:");
 builder.getListFormat().setList(list2);
 builder.writeln("Item 1");
 builder.writeln("Item 2");
 builder.getListFormat().removeNumbers();

 doc.save(getArtifactsDir() + "Lists.RestartNumberingUsingListCopy.docx");
 

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Parameters:

ParameterTypeDescription
valueintThe starting number for this list level.

setTabPosition(double value)

public void setTabPosition(double value)

Sets the tab position (in points) for the list level.

Remarks:

Has effect only when getTrailingCharacter() / setTrailingCharacter(int) is a tab.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Parameters:

ParameterTypeDescription
valuedoubleThe tab position (in points) for the list level.

setTextPosition(double value)

public void setTextPosition(double value)

Sets the position (in points) for the second line of wrapping text for the list level.

Remarks:

getTextPosition() / setTextPosition(double) corresponds to LeftIndent of the paragraph.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Parameters:

ParameterTypeDescription
valuedoubleThe position (in points) for the second line of wrapping text for the list level.

setTrailingCharacter(int value)

public void setTrailingCharacter(int value)

Sets the character inserted after the number for the list level.

Examples:

Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.


 Document doc = new Document();

 // A list allows us to organize and decorate sets of paragraphs with prefix symbols and indents.
 // We can create nested lists by increasing the indent level.
 // We can begin and end a list by using a document builder's "ListFormat" property.
 // Each paragraph that we add between a list's start and the end will become an item in the list.
 // Create a list from a Microsoft Word template, and customize the first two of its list levels.
 List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);

 ListLevel listLevel = list.getListLevels().get(0);
 listLevel.getFont().setColor(Color.RED);
 listLevel.getFont().setSize(24.0);
 listLevel.setNumberStyle(NumberStyle.ORDINAL_TEXT);
 listLevel.setStartAt(21);
 listLevel.setNumberFormat("");

 listLevel.setNumberPosition(-36);
 listLevel.setTextPosition(144.0);
 listLevel.setTabPosition(144.0);

 listLevel = list.getListLevels().get(1);
 listLevel.setAlignment(ListLevelAlignment.RIGHT);
 listLevel.setNumberStyle(NumberStyle.BULLET);
 listLevel.getFont().setName("Wingdings");
 listLevel.getFont().setColor(Color.BLUE);
 listLevel.getFont().setSize(24.0);

 // This NumberFormat value will create star-shaped bullet list symbols.
 listLevel.setNumberFormat("\uf0af");
 listLevel.setTrailingCharacter(ListTrailingCharacter.SPACE);
 listLevel.setNumberPosition(144.0);

 // Create paragraphs and apply both list levels of our custom list formatting to them.
 DocumentBuilder builder = new DocumentBuilder(doc);

 builder.getListFormat().setList(list);
 builder.writeln("The quick brown fox...");
 builder.writeln("The quick brown fox...");

 builder.getListFormat().listIndent();
 builder.writeln("jumped over the lazy dog.");
 builder.writeln("jumped over the lazy dog.");

 builder.getListFormat().listOutdent();
 builder.writeln("The quick brown fox...");

 builder.getListFormat().removeNumbers();

 builder.getDocument().save(getArtifactsDir() + "Lists.CreateCustomList.docx");
 

Parameters:

ParameterTypeDescription
valueintThe character inserted after the number for the list level. The value must be one of ListTrailingCharacter constants.