ListParagraphs Interface

Definition

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

public interface class ListParagraphs : System::Collections::IEnumerable
[System.Runtime.InteropServices.Guid("00020991-0000-0000-C000-000000000046")]
public interface ListParagraphs : System.Collections.IEnumerable
type ListParagraphs = interface
    interface IEnumerable
Public Interface ListParagraphs
Implements IEnumerable
Attributes
Implements

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(ListTemplate, Object, Object, Object) , ApplyBulletDefault(Object) , ApplyNumberDefault(Object) , or ApplyOutlineNumberDefault(Object) 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.

Properties

Application

Returns a Application object that represents the Microsoft Word application.

Count

Returns the number of items in the specified collection.

Creator

Returns a 32-bit integer that indicates the application in which the specified object was created.

Item[Int32]

Returns an individual object in a collection.

Parent

Returns an object that represents the parent object of the specified object.

Methods

GetEnumerator()

Applies to