List.CountNumberedItems Method 

Returns the number of bulleted or numbered items and LISTNUM fields in the specified list.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Dim NumberType As Object
Dim Level As Object
Dim returnValue As Integer
Dim list1 As List
returnValue = list1.CountNumberedItems(NumberType, Level)

Syntax

Function CountNumberedItems( _
    <InAttribute()> Optional ByRef NumberType As Object, _
    <InAttribute()> Optional ByRef Level As Object _
) As Integer
int CountNumberedItems(
    [In, Optional] ref object NumberType, 
    [In, Optional] ref object Level
);
public: Int32 CountNumberedItems(
    &Object^ NumberType, 
    &Object^ Level
);
public int CountNumberedItems(
    /*in*/System.Object NumberType, 
    /*in*/System.Object Level
);
function CountNumberedItems(
     NumberType : Object, 
     Level : Object
) : int;

Parameters

  • NumberType
    Optional Object. The type of numbers to be counted. Can be one of the following WdNumberType constants: wdNumberParagraph, wdNumberListNum, or wdNumberAllNumbers. The default value is wdNumberAllNumbers.
  • Level
    Optional Object. A number that corresponds to the numbering level you want to count. If this argument is omitted, all levels are counted.

Remarks

Bulleted items are counted when either wdNumberParagraph or wdNumberAllNumbers (the default) is specified for NumberType.

There are two types of numbers: preset numbers (wdNumberParagraph), which you can add to paragraphs by selecting a template in the Bullets and Numbering dialog box; and LISTNUM fields (wdNumberListNum), which allow you to add more than one number per paragraph.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

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

Target Platforms

See Also

Reference

List Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

List Members