_Document.CountNumberedItems Method

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

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

Syntax

'Declaration
Function CountNumberedItems ( _
    ByRef NumberType As Object, _
    ByRef Level As Object _
) As Integer
'Usage
Dim instance As _Document
Dim NumberType As Object
Dim Level As Object
Dim returnValue As Integer

returnValue = instance.CountNumberedItems(NumberType, _
    Level)
int CountNumberedItems(
    ref Object NumberType,
    ref Object Level
)

Parameters

  • NumberType
    Type: System.Object%
    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
    Type: System.Object%
    Optional Object. A number that corresponds to the numbering level you want to count. If this argument is omitted, all levels are counted.

Return Value

Type: System.Int32

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.

See Also

Reference

_Document Interface

_Document Members

Microsoft.Office.Interop.Word Namespace