The Aspose.Words.Lists namespace contains classes for working with bulleted and numbered lists defined in a document.
Classes | |
class | List |
Represents formatting of a list. To learn more, visit the Working with Lists documentation article. More... | |
class | ListCollection |
Stores and manages formatting of bulleted and numbered lists used in a document. To learn more, visit the Working with Lists documentation article. More... | |
class | ListFormat |
Allows to control what list formatting is applied to a paragraph. To learn more, visit the Working with Lists documentation article. More... | |
class | ListLabel |
Defines properties specific to a list label. To learn more, visit the Working with Lists documentation article. More... | |
class | ListLevel |
Defines formatting for a list level. To learn more, visit the Working with Lists documentation article. More... | |
class | ListLevelCollection |
A collection of list formatting for each level in a list. To learn more, visit the Working with Lists documentation article. More... | |
Enumerations | |
enum class | ListLevelAlignment |
Specifies alignment for the list number or bullet. More... | |
enum class | ListTemplate |
Specifies one of the predefined list formats available in Microsoft Word. More... | |
enum class | ListTrailingCharacter |
Specifies the character that separates the list label from the text of the paragraph. More... | |
|
strong |
Specifies alignment for the list number or bullet.
Used as a value for the Alignment property.
Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.
|
strong |
Specifies one of the predefined list formats available in Microsoft Word.
A list template value is used as a parameter into the Add() method.
Aspose.Words list templates correspond to the 21 list templates available in the Bullets and Numbering dialog box in Microsoft Word 2003.
Shows how to work with list levels.
Shows how to restart numbering in a list by copying a list.
Shows how to create a document that contains all outline headings list templates.
Enumerator | |
---|---|
BulletDefault | Default bulleted list with 9 levels. Bullet of the first level is a disc, bullet of the second level is a circle, bullet of the third level is a square. Then formatting repeats for the remaining levels. Each level is indented to the right by 0.25" relative to the previous level. Corresponds to the 1st bulleted list template in the Bullets and Numbering dialog box in Microsoft Word. |
BulletDisk | Same as BulletDefault. Corresponds to the 1st bulleted list template in the Bullets and Numbering dialog box in Microsoft Word. |
BulletCircle | The bullet of the first level is a circle. The remaining levels are same as in BulletDefault. Corresponds to the 2nd bulleted list template in the Bullets and Numbering dialog box in Microsoft Word. |
BulletSquare | The bullet of the first level is a square. The remaining levels are same as in BulletDefault. Corresponds to the 3rd bulleted list template in the Bullets and Numbering dialog box in Microsoft Word. |
BulletDiamonds | The bullet of the first level is a 4-diamond Wingding character. The remaining levels are same as in BulletDefault. Corresponds to the 5th bulleted list template in the Bullets and Numbering dialog box in Microsoft Word. |
BulletArrowHead | The bullet of the first level is an arrow head Wingding character. The remaining levels are same as in BulletDefault. Corresponds to the 6th bulleted list template in the Bullets and Numbering dialog box in Microsoft Word. |
BulletTick | The bullet of the first level is a tick Wingding character. The remaining levels are same as in BulletDefault. Corresponds to the 7th bulleted list template in the Bullets and Numbering dialog box in Microsoft Word. |
NumberDefault | Default numbered list with 9 levels. Arabic numbering (1., 2., 3., ...) for the first level, lowercase letter numbering (a., b., c., ...) for the second level, lowercase roman numbering (i., ii., iii., ...) for the third level. Then formatting repeats for the remaining levels. Each level is indented to the right by 0.25" relative to the previous level. Corresponds to the 1st numbered list template in the Bullets and Numbering dialog box in Microsoft Word. |
NumberArabicDot | Same as NumberDefault. Corresponds to the 1st numbered list template in the Bullets and Numbering dialog box in Microsoft Word. |
NumberArabicParenthesis | The number of the first level is "1)". The remaining levels are same as in NumberDefault. Corresponds to the 2nd numbered list template in the Bullets and Numbering dialog box in Microsoft Word. |
NumberUppercaseRomanDot | The number of the first level is "I.". The remaining levels are same as in NumberDefault. Corresponds to the 3rd numbered list template in the Bullets and Numbering dialog box in Microsoft Word. |
NumberUppercaseLetterDot | The number of the first level is "A.". The remaining levels are same as in NumberDefault. Corresponds to the 4th numbered list template in the Bullets and Numbering dialog box in Microsoft Word. |
NumberLowercaseLetterParenthesis | The number of the first level is "a)". The remaining levels are same as in NumberDefault. Corresponds to the 5th numbered list template in the Bullets and Numbering dialog box in Microsoft Word. |
NumberLowercaseLetterDot | The number of the first level is "a.". The remaining levels are same as in NumberDefault. Corresponds to the 6th numbered list template in the Bullets and Numbering dialog box in Microsoft Word. |
NumberLowercaseRomanDot | The number of the first level is "i.". The remaining levels are same as in NumberDefault. Corresponds to the 7th numbered list template in the Bullets and Numbering dialog box in Microsoft Word. |
OutlineNumbers | An outline list with levels numbered "1), a), i), (1), (a), (i), 1., a., i.". Corresponds to the 1st outline list template in the Bullets and Numbering dialog box in Microsoft Word. |
OutlineLegal | An outline list with levels are numbered "1., 1.1., 1.1.1, ...". Corresponds to the 2nd outline list template in the Bullets and Numbering dialog box in Microsoft Word. |
OutlineBullets | An outline lists with various bullets for different levels. Corresponds to the 3rd outline list template in the Bullets and Numbering dialog box in Microsoft Word. |
OutlineHeadingsArticleSection | An outline list with levels linked to Heading styles. Corresponds to the 4th outline list template in the Bullets and Numbering dialog box in Microsoft Word. |
OutlineHeadingsLegal | An outline list with levels linked to Heading styles. Corresponds to the 5th outline list template in the Bullets and Numbering dialog box in Microsoft Word. |
OutlineHeadingsNumbers | An outline list with levels linked to Heading styles. Corresponds to the 6th outline list template in the Bullets and Numbering dialog box in Microsoft Word. |
OutlineHeadingsChapter | An outline list with levels linked to Heading styles. Corresponds to the 7th outline list template in the Bullets and Numbering dialog box in Microsoft Word. |
|
strong |
Specifies the character that separates the list label from the text of the paragraph.
Used as a value for the TrailingCharacter property.
Shows how to apply custom list formatting to paragraphs when using DocumentBuilder.