ListParagraphs Interface

A collection of Paragraph objects that represents the paragraphs of the specified document, list, or range that have list formatting applied.

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
<GuidAttribute("00020991-0000-0000-C000-000000000046")> _
Public Interface ListParagraphs _
    Inherits IEnumerable
'Usage
Dim instance As ListParagraphs
[GuidAttribute("00020991-0000-0000-C000-000000000046")]
public interface ListParagraphs : IEnumerable

Remarks

Use the ListParagraphs property to return the ListParagraphs collection.

Use ListParagraphs(index), where index is the index number, to return a single Paragraph object with list formatting.

Paragraphs can have two types of list formatting. The first type includes an automatically added number or bullet at the beginning of each paragraph in the list. The second type includes LISTNUM fields, which can be placed anywhere inside a paragraph. There can be more than one LISTNUM field per paragraph.

To add list formatting to paragraphs, you can use the ApplyListTemplate , ApplyBulletDefault , ApplyNumberDefault , or ApplyOutlineNumberDefault method. You access these methods through the ListFormat object for a specified range.

The Count property for this collection in a document returns the number of items in the main story only. To count items in other stories use the collection with the Range object.

See Also

Reference

ListParagraphs Members

Microsoft.Office.Interop.Word Namespace