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)

Usage

Public Class istParagraphsImplementation
    Implements ListParagraphs
End Class
Dim istParagraphsImplementation1 As New istParagraphsImplementation()

Syntax

Public Interface ListParagraphs
    Inherits IEnumerable
public interface ListParagraphs : IEnumerable
public interface class ListParagraphs : public IEnumerable
public interface ListParagraphs implements IEnumerable
public interface ListParagraphs implements 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.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Word Namespace

Other Resources

ListParagraphs Members